commit | 5617fae5418ad2dcaf69e2422f8087a2bdb82a76 | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Thu Mar 06 08:09:22 2008 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Thu Mar 06 08:09:22 2008 +0000 |
tree | b74e4239f1709d6af2078967958ba2643fbad926 | |
parent | 2a625bcfa2603031f3495ec0891decb53f96f564 [diff] [blame] |
Fixed mismatched deallocation in GRBlockCounter::Factory::~Factory. Reported by Zhongxing Xu! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47991 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Analysis/GRBlockCounter.cpp b/Analysis/GRBlockCounter.cpp index 9dd601b..3ecc39d 100644 --- a/Analysis/GRBlockCounter.cpp +++ b/Analysis/GRBlockCounter.cpp
@@ -39,7 +39,7 @@ } GRBlockCounter::Factory::~Factory() { - delete static_cast<CountMap*>(F); + delete static_cast<CountMap::Factory*>(F); } GRBlockCounter