Fix a compiler error on MSVC (variable name 'E' clash).

llvm-svn: 49727
This commit is contained in:
Argyrios Kyrtzidis 2008-04-15 16:30:10 +00:00
parent 7000c8f1aa
commit 45887902b6
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ public:
GRExprEngine& Eng = BR.getEngine();
for (GRExprEngine::UndefReceiversTy::iterator I=Eng.undef_receivers_begin(),
E = Eng.undef_receivers_end(); I!=E; ++I) {
End = Eng.undef_receivers_end(); I!=End; ++I) {
// Generate a report for this bug.
RangedBugReport report(*this, *I);