TopLevelMap[] reference is a pointer.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97661 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2010-03-03 20:46:48 +00:00
parent aedc3ec1e2
commit a84f3d9a97

View File

@ -139,7 +139,7 @@ public:
}
V lookup(const K &Key) {
return TopLevelMap[Key].getValue();
return TopLevelMap[Key]->getValue();
}
void insert(const K &Key, const V &Val) {