Revert a minor comment change inadvertently included with r128502.
[oota-llvm.git] / include / llvm / ADT / ImmutableMap.h
index e439a099482196cbd79e042d428e4b8509a9cbbd..d6cce7ccfa05f30e5485612c28858bdd8b2cbb55 100644 (file)
@@ -108,7 +108,7 @@ public:
     ImmutableMap getEmptyMap() { return ImmutableMap(F.getEmptyTree()); }
 
     ImmutableMap add(ImmutableMap Old, key_type_ref K, data_type_ref D) {
-      TreeTy *T = F.add(Old.Root, std::make_pair<key_type,data_type>(K,D));
+      TreeTy *T = F.add(Old.Root, std::pair<key_type,data_type>(K,D));
       return ImmutableMap(Canonicalize ? F.getCanonicalTree(T): T);
     }