From 45887902b6902ecf87448b02af3fc9c62b2efaa4 Mon Sep 17 00:00:00 2001 From: Argyrios Kyrtzidis Date: Tue, 15 Apr 2008 16:30:10 +0000 Subject: [PATCH] Fix a compiler error on MSVC (variable name 'E' clash). llvm-svn: 49727 --- clang/lib/Analysis/GRSimpleVals.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/Analysis/GRSimpleVals.cpp b/clang/lib/Analysis/GRSimpleVals.cpp index b37ccf5f802e..dabae43523c4 100644 --- a/clang/lib/Analysis/GRSimpleVals.cpp +++ b/clang/lib/Analysis/GRSimpleVals.cpp @@ -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);