forked from OSchip/llvm-project
Fix a compiler error on MSVC (variable name 'E' clash).
llvm-svn: 49727
This commit is contained in:
parent
7000c8f1aa
commit
45887902b6
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue