diff options
author | Jordan Rose <jordan_rose@apple.com> | 2012-11-02 01:53:40 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2012-11-02 01:53:40 +0000 |
commit | e10d5a7659ec3458545e4274dcc57136d6151d05 (patch) | |
tree | 1c8119b7e84332962f64a79315b1ce2d5da98ca6 /clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp | |
parent | 8f88f06dd2d675171ad40bfccb0f4a9796a5f2fb (diff) | |
download | bcm5719-llvm-e10d5a7659ec3458545e4274dcc57136d6151d05.tar.gz bcm5719-llvm-e10d5a7659ec3458545e4274dcc57136d6151d05.zip |
[analyzer] Rename 'EmitReport' to 'emitReport'.
No functionality change.
llvm-svn: 167275
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp index 30d060996ea..c8856162fe8 100644 --- a/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp @@ -147,7 +147,7 @@ void ChrootChecker::checkPreStmt(const CallExpr *CE, CheckerContext &C) const { "after chroot")); BugReport *R = new BugReport(*BT_BreakJail, BT_BreakJail->getDescription(), N); - C.EmitReport(R); + C.emitReport(R); } return; |