diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-11 18:40:29 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-11 18:40:29 +0000 |
commit | 5e55cda64f4452fa65d83f66390c7126a8b248bb (patch) | |
tree | d0d8ac420f466464477df71d3b417badcf23427c /lib/Analysis/BugReporter.cpp | |
parent | 405cbb48a7bfb2c45e5b3b028666ebdfb208f872 (diff) |
Added "RangedBugReport".
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49551 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/BugReporter.cpp')
-rw-r--r-- | lib/Analysis/BugReporter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Analysis/BugReporter.cpp b/lib/Analysis/BugReporter.cpp index 0f7b235944..148d2582dc 100644 --- a/lib/Analysis/BugReporter.cpp +++ b/lib/Analysis/BugReporter.cpp @@ -28,6 +28,8 @@ using namespace clang; BugReporter::~BugReporter() {} BugType::~BugType() {} BugReport::~BugReport() {} +RangedBugReport::~RangedBugReport() {} + ExplodedGraph<ValueState>& BugReporter::getGraph() { return Eng.getGraph(); } static inline Stmt* GetStmt(const ProgramPoint& P) { |