]> granicus.if.org Git - clang/commitdiff
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)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167278 91177308-0d34-0410-b5e6-96231b3b80d8

examples/analyzer-plugin/MainCallChecker.cpp

index 48a979548f9b4e517ac4d33e972f53d110ab25d6..0b3c0cf6dc905fd191da6de228a9261c2e1538c3 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);
   }
 }