diff options
Diffstat (limited to 'lib/Checker/BugReporter.cpp')
-rw-r--r-- | lib/Checker/BugReporter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Checker/BugReporter.cpp b/lib/Checker/BugReporter.cpp index b300a05b89..3fc62f3fbd 100644 --- a/lib/Checker/BugReporter.cpp +++ b/lib/Checker/BugReporter.cpp @@ -51,7 +51,7 @@ void BugReporterContext::addVisitor(BugReporterVisitor* visitor) { } CallbacksSet.InsertNode(visitor, InsertPos); - Callbacks = F.Add(visitor, Callbacks); + Callbacks = F.add(visitor, Callbacks); } //===----------------------------------------------------------------------===// @@ -1333,7 +1333,7 @@ void BugReporter::FlushReports() { } // Remove all references to the BugType objects. - BugTypes = F.GetEmptySet(); + BugTypes = F.getEmptySet(); } //===----------------------------------------------------------------------===// @@ -1615,7 +1615,7 @@ void GRBugReporter::GeneratePathDiagnostic(PathDiagnostic& PD, } void BugReporter::Register(BugType *BT) { - BugTypes = F.Add(BugTypes, BT); + BugTypes = F.add(BugTypes, BT); } void BugReporter::EmitReport(BugReport* R) { |