diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2009-11-10 01:17:45 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2009-11-10 01:17:45 +0000 |
commit | 3958b502404b4bd67f26fee398cb347abe89e6a8 (patch) | |
tree | 9a9f9e9aea185ffa1d02fe3a609aa0cd40207d0c /lib/Analysis/GRExprEngine.cpp | |
parent | 89f8c1d40e22f498263dc4b00ed996e1817159b3 (diff) |
Fix clang's use of DenseMap iterators after r86636 fixed their constness.
Patch by Victor Zverovich!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86638 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | lib/Analysis/GRExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index 7dbb085153..528a469286 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp @@ -2841,7 +2841,7 @@ void GRExprEngine::VisitBinaryOperator(BinaryOperator* B, //===----------------------------------------------------------------------===// Checker *GRExprEngine::lookupChecker(void *tag) const { - CheckerMap::iterator I = CheckerM.find(tag); + CheckerMap::const_iterator I = CheckerM.find(tag); return (I == CheckerM.end()) ? NULL : Checkers[I->second].second; } |