summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-11-02 02:04:01 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-11-02 02:04:01 +0000
commit5b4379fafec393bd7889818b3ecc2cb92cd2f9bf (patch)
treec4daa97ba698eec2bbfca7902ffebcdb6bbd59d8 /examples
parent466224fd068a0a0084968a7f521a690a51c3b226 (diff)
downloadclang-5b4379fafec393bd7889818b3ecc2cb92cd2f9bf.tar.gz
clang-5b4379fafec393bd7889818b3ecc2cb92cd2f9bf.tar.bz2
clang-5b4379fafec393bd7889818b3ecc2cb92cd2f9bf.tar.xz
analyzer-plugin/MainCallChecker.cpp: Fixup corresponding to r167275.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167278 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/analyzer-plugin/MainCallChecker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/analyzer-plugin/MainCallChecker.cpp b/examples/analyzer-plugin/MainCallChecker.cpp
index 48a979548f..0b3c0cf6dc 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);
}
}