mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 22:01:56 +00:00
Removed ImmutableMap::SlimFind and replaced it with ImmutableMap::lookup. The new method does the same thing, except that it returns a pointer to the mapped data type, and not to an internal tree node.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53171 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
21cacc4de8
commit
aa5044d3ce
@ -194,17 +194,15 @@ public:
|
|||||||
iterator begin() const { return iterator(Root); }
|
iterator begin() const { return iterator(Root); }
|
||||||
iterator end() const { return iterator(); }
|
iterator end() const { return iterator(); }
|
||||||
|
|
||||||
TreeTy* SlimFind(key_type_ref K) const {
|
data_type* lookup(key_type_ref K) const {
|
||||||
if (Root) {
|
if (Root) {
|
||||||
TreeTy* T = Root->find(K);
|
TreeTy* T = Root->find(K);
|
||||||
if (T) return T;
|
if (T) return &T->getValue().second;
|
||||||
}
|
}
|
||||||
|
|
||||||
return NULL;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: Add 'find' that returns an iterator instead of a TreeTy*.
|
|
||||||
|
|
||||||
//===--------------------------------------------------===//
|
//===--------------------------------------------------===//
|
||||||
// Utility methods.
|
// Utility methods.
|
||||||
//===--------------------------------------------------===//
|
//===--------------------------------------------------===//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user