ScopedHashTable lookup should be const

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293695 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Berlin 2017-01-31 22:01:08 +00:00
parent 3ba2159d59
commit c2913cb380

@ -182,8 +182,8 @@ public:
return TopLevelMap.count(Key);
}
V lookup(const K &Key) {
typename DenseMap<K, ValTy*, KInfo>::iterator I = TopLevelMap.find(Key);
V lookup(const K &Key) const {
auto I = TopLevelMap.find(Key);
if (I != TopLevelMap.end())
return I->second->getValue();