Silencing warnings in MSVC due to duplicate identifiers.

llvm-svn: 178591
This commit is contained in:
Aaron Ballman 2013-04-02 23:47:53 +00:00
parent 23ab35aed2
commit 235af9c1f5
1 changed files with 2 additions and 2 deletions

View File

@ -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) {