Removed redundant ctor.
[oota-llvm.git] / include / llvm / ADT / ImmutableMap.h
index bbf34c566d8bfaa8cff069e8c3e9af7b5c276609..ce0f698fcb8250a09095b198b868715067e512f1 100644 (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 {