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:
Zhongxing Xu 2010-02-02 01:57:01 +00:00
parent 949458d014
commit d2f8ba0b3d
1 changed files with 0 additions and 3 deletions

View 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;
}