forked from OSchip/llvm-project
11.8p1: A nested class is a member and as such has the same access rights as
any other member. llvm-svn: 95047
This commit is contained in:
parent
949458d014
commit
d2f8ba0b3d
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue