diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-11-24 00:54:37 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-11-24 00:54:37 +0000 |
commit | 3baf672378f105602d2b12f03f00277ae1936fe9 (patch) | |
tree | 3aff1c30c5f276162a7544f9b9786275beea410a /lib/Checker/BugReporter.cpp | |
parent | 97ab3ac0889b4956d518a145317e2d951428ba34 (diff) |
Adjust method calls to reflect name changes in
ImmutableSet/ImmtuableMap/ImmutableList APIs.
Along the way, clean up some method names in
the static analyzer so that they are more
descriptive and/or start with lowercase letters.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120071 91177308-0d34-0410-b5e6-96231b3b80d8
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) { |