diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2013-04-02 23:47:53 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2013-04-02 23:47:53 +0000 |
commit | 77e278880380fe9dc95a1491fe9216967d2e6d63 (patch) | |
tree | c2ab1d11ebc8407138c7ce45cf57e36ea80fd674 /lib/StaticAnalyzer/Core/ProgramState.cpp | |
parent | f068c92f22cc5c42433f5bd37b000a714a56670f (diff) |
Silencing warnings in MSVC due to duplicate identifiers.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178591 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/ProgramState.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Core/ProgramState.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/StaticAnalyzer/Core/ProgramState.cpp b/lib/StaticAnalyzer/Core/ProgramState.cpp index ebce0c1f4d..f3e80f19c9 100644 --- a/lib/StaticAnalyzer/Core/ProgramState.cpp +++ b/lib/StaticAnalyzer/Core/ProgramState.cpp @@ -153,12 +153,12 @@ ProgramState::invalidateRegions(RegionList Regions, RegionList ConstRegions) const { SmallVector<SVal, 8> Values; for (RegionList::const_iterator I = Regions.begin(), - E = Regions.end(); I != E; ++I) + End = Regions.end(); I != End; ++I) Values.push_back(loc::MemRegionVal(*I)); SmallVector<SVal, 8> ConstValues; for (RegionList::const_iterator I = ConstRegions.begin(), - E = ConstRegions.end(); I != E; ++I) + End = ConstRegions.end(); I != End; ++I) ConstValues.push_back(loc::MemRegionVal(*I)); if (!IS) { |