[analyzer] [NFC] [RetainCountChecker] Remove dead unused map

Differential Revision: https://reviews.llvm.org/D56402

llvm-svn: 350868
This commit is contained in:
George Karpenkov 2019-01-10 18:16:10 +00:00
parent 4f64b38f56
commit 42c6ac748e
1 changed files with 0 additions and 6 deletions

View File

@ -256,11 +256,6 @@ class RetainCountChecker
mutable std::unique_ptr<CFRefBug> overAutorelease, returnNotOwnedForOwned;
mutable std::unique_ptr<CFRefBug> leakWithinFunction, leakAtReturn;
typedef llvm::DenseMap<SymbolRef, const CheckerProgramPointTag *> SymbolTagMap;
// This map is only used to ensure proper deletion of any allocated tags.
mutable SymbolTagMap DeadSymbolTags;
mutable std::unique_ptr<RetainSummaryManager> Summaries;
public:
static constexpr const char *DeallocTagDescription = "DeallocSent";
@ -273,7 +268,6 @@ public:
RetainCountChecker() {}
~RetainCountChecker() override { DeleteContainerSeconds(DeadSymbolTags); }
CFRefBug *getLeakWithinFunctionBug(const LangOptions &LOpts) const;