analyzer-plugin/MainCallChecker.cpp: Fixup corresponding to r167275.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Fri, 2 Nov 2012 02:04:01 +0000 (02:04 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Fri, 2 Nov 2012 02:04:01 +0000 (02:04 +0000)
llvm-svn: 167278

clang/examples/analyzer-plugin/MainCallChecker.cpp

index 48a9795..0b3c0cf 100644 (file)
@@ -39,7 +39,7 @@ void MainCallChecker::checkPreStmt(const CallExpr *CE, CheckerContext &C) const
 
     BugReport *report = new BugReport(*BT, BT->getName(), N);
     report->addRange(Callee->getSourceRange());
-    C.EmitReport(report);    
+    C.emitReport(report);
   }
 }