mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Make find return the appropriate iterator/const_iterator
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34137 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dc45f0fb40
commit
569b935e6b
@ -108,12 +108,18 @@ public:
|
||||
return LookupBucketFor(Val, TheBucket);
|
||||
}
|
||||
|
||||
iterator find(const KeyT &Val) const {
|
||||
iterator find(const KeyT &Val) {
|
||||
BucketT *TheBucket;
|
||||
if (LookupBucketFor(Val, TheBucket))
|
||||
return iterator(TheBucket, Buckets+NumBuckets);
|
||||
return end();
|
||||
}
|
||||
const_iterator find(const KeyT &Val) const {
|
||||
BucketT *TheBucket;
|
||||
if (LookupBucketFor(Val, TheBucket))
|
||||
return const_iterator(TheBucket, Buckets+NumBuckets);
|
||||
return end();
|
||||
}
|
||||
|
||||
bool insert(const std::pair<KeyT, ValueT> &KV) {
|
||||
BucketT *TheBucket;
|
||||
@ -334,7 +340,7 @@ class DenseMapConstIterator : public DenseMapIterator<KeyT, ValueT, KeyInfoT> {
|
||||
public:
|
||||
DenseMapConstIterator(const std::pair<KeyT, ValueT> *Pos,
|
||||
const std::pair<KeyT, ValueT> *E)
|
||||
: DenseMapIterator<KeyT, ValueT>(Pos, E) {
|
||||
: DenseMapIterator<KeyT, ValueT, KeyInfoT>(Pos, E) {
|
||||
}
|
||||
const std::pair<KeyT, ValueT> &operator*() const {
|
||||
return *this->Ptr;
|
||||
|
Loading…
Reference in New Issue
Block a user