mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 23:29:51 +00:00
Remove redundant qualifiers.
llvm-svn: 76357
This commit is contained in:
parent
8be4e61a2d
commit
0686bcbe91
@ -166,7 +166,7 @@ public:
|
||||
/// contains - Returns true if this tree contains a subtree (node) that
|
||||
/// has an data element that matches the specified key. Complexity
|
||||
/// is logarithmic in the size of the tree.
|
||||
bool contains(const key_type_ref K) { return (bool) find(K); }
|
||||
bool contains(key_type_ref K) { return (bool) find(K); }
|
||||
|
||||
/// foreach - A member template the accepts invokes operator() on a functor
|
||||
/// object (specifed by Callback) for every node/subtree in the tree.
|
||||
@ -992,7 +992,7 @@ public:
|
||||
friend class Factory;
|
||||
|
||||
/// contains - Returns true if the set contains the specified value.
|
||||
bool contains(const value_type_ref V) const {
|
||||
bool contains(value_type_ref V) const {
|
||||
return Root ? Root->contains(V) : false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user