From 056abd2059c65a3e908193aeae16fad98017437c Mon Sep 17 00:00:00 2001 From: dim Date: Sun, 2 Dec 2012 13:20:44 +0000 Subject: Vendor import of clang release_32 branch r168974 (effectively, 3.2 RC2): http://llvm.org/svn/llvm-project/cfe/branches/release_32@168974 --- examples/analyzer-plugin/MainCallChecker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/analyzer-plugin/MainCallChecker.cpp') diff --git a/examples/analyzer-plugin/MainCallChecker.cpp b/examples/analyzer-plugin/MainCallChecker.cpp index 48a9795..0b3c0cf 100644 --- a/examples/analyzer-plugin/MainCallChecker.cpp +++ b/examples/analyzer-plugin/MainCallChecker.cpp @@ -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); } } -- cgit v1.1