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/Core/BugReporter.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/Core/BugReporter.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/BugReporter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/BugReporter.cpp b/clang/lib/StaticAnalyzer/Core/BugReporter.cpp index 2bf701bb9c3..c898d65a5f9 100644 --- a/clang/lib/StaticAnalyzer/Core/BugReporter.cpp +++ b/clang/lib/StaticAnalyzer/Core/BugReporter.cpp @@ -2106,7 +2106,7 @@ void BugReporter::Register(BugType *BT) { BugTypes = F.add(BugTypes, BT); } -void BugReporter::EmitReport(BugReport* R) { +void BugReporter::emitReport(BugReport* R) { // Compute the bug report's hash to determine its equivalence class. llvm::FoldingSetNodeID ID; R->Profile(ID); @@ -2309,7 +2309,7 @@ void BugReporter::EmitBasicReport(const Decl *DeclWithIssue, BugReport *R = new BugReport(*BT, str, Loc); R->setDeclWithIssue(DeclWithIssue); for ( ; NumRanges > 0 ; --NumRanges, ++RBeg) R->addRange(*RBeg); - EmitReport(R); + emitReport(R); } BugType *BugReporter::getBugTypeForName(StringRef name, |