diff options
-rw-r--r-- | clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h | 13 | ||||
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/BugReporter.cpp | 5 |
2 files changed, 0 insertions, 18 deletions
diff --git a/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h b/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h index 95aab663e2a..046847b7dbe 100644 --- a/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h +++ b/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h @@ -88,7 +88,6 @@ public: using VisitorList = SmallVector<std::unique_ptr<BugReporterVisitor>, 8>; using visitor_iterator = VisitorList::iterator; using visitor_range = llvm::iterator_range<visitor_iterator>; - using ExtraTextList = SmallVector<StringRef, 2>; using NoteList = SmallVector<std::shared_ptr<PathDiagnosticNotePiece>, 4>; protected: @@ -106,7 +105,6 @@ protected: const ExplodedNode *ErrorNode = nullptr; SmallVector<SourceRange, 4> Ranges; const SourceRange ErrorNodeRange; - ExtraTextList ExtraText; NoteList Notes; /// A (stack of) a set of symbols that are registered with this @@ -288,17 +286,6 @@ public: return Notes; } - /// This allows for addition of meta data to the diagnostic. - /// - /// Currently, only the HTMLDiagnosticClient knows how to display it. - void addExtraText(StringRef S) { - ExtraText.push_back(S); - } - - virtual const ExtraTextList &getExtraText() { - return ExtraText; - } - /// Return the "definitive" location of the reported bug. /// /// While a bug can span an entire path, usually there is a specific diff --git a/clang/lib/StaticAnalyzer/Core/BugReporter.cpp b/clang/lib/StaticAnalyzer/Core/BugReporter.cpp index 37a3ddecf7a..847174af601 100644 --- a/clang/lib/StaticAnalyzer/Core/BugReporter.cpp +++ b/clang/lib/StaticAnalyzer/Core/BugReporter.cpp @@ -2878,11 +2878,6 @@ void BugReporter::FlushReport(BugReportEquivClass& EQ) { Pieces.push_front(*I); } - // Get the meta data. - const BugReport::ExtraTextList &Meta = report->getExtraText(); - for (const auto &i : Meta) - PD->addMeta(i); - updateExecutedLinesWithDiagnosticPieces(*PD); Consumer->HandlePathDiagnostic(std::move(PD)); } |