diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-07-29 08:00:02 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-07-29 08:00:02 +0000 |
commit | 5a5c60d273130990a7da770d7f5dc809920d3b65 (patch) | |
tree | 67eab5a974d575ad2e9db79c070f63806b81941c | |
parent | 9a676b7544b4670bdefbe594b08926d5618d4559 (diff) |
delete an undefined method.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77446 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/PathSensitive/BugReporter.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/clang/Analysis/PathSensitive/BugReporter.h b/include/clang/Analysis/PathSensitive/BugReporter.h index 042564e0e0..485299518a 100644 --- a/include/clang/Analysis/PathSensitive/BugReporter.h +++ b/include/clang/Analysis/PathSensitive/BugReporter.h @@ -199,8 +199,7 @@ public: const std::string& getCategory() const { return Category; } virtual void FlushReports(BugReporter& BR); - void AddReport(BugReport* BR); - + typedef llvm::FoldingSet<BugReportEquivClass>::iterator iterator; iterator begin() { return EQClasses.begin(); } iterator end() { return EQClasses.end(); } |