Implement TLSLDM.
[oota-llvm.git] / include / llvm / ADT / ImmutableMap.h
index 7c0a8c964e522f47d373955c628bc228bd17e798..8af128ef3bd847f2127848711be25aefd5c117f8 100644 (file)
@@ -106,13 +106,10 @@ public:
     void operator=(const Factory& RHS); // DO NOT IMPLEMENT
   };
 
-  friend class Factory;
-
   bool contains(key_type_ref K) const {
     return Root ? Root->contains(K) : false;
   }
 
-
   bool operator==(ImmutableMap RHS) const {
     return Root && RHS.Root ? Root->isEqual(*RHS.Root) : Root == RHS.Root;
   }