Removed redundant ctor.

llvm-svn: 54789
This commit is contained in:
Ted Kremenek 2008-08-14 21:17:07 +00:00
parent af9e467544
commit 7bc723b79f

View File

@ -76,7 +76,6 @@ public:
/// should use a Factory object to create maps instead of directly
/// invoking the constructor, but there are cases where make this
/// constructor public is useful.
explicit ImmutableMap(TreeTy* R) : Root(R) {}
explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) {}
class Factory {