diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-02-09 06:04:59 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-02-09 06:04:59 +0000 |
commit | 824c547dc5d4451b9dbacc56621592fa010878f4 (patch) | |
tree | ed00aca8c5a718888c4b5c91a8fcfc19697cb7c3 | |
parent | 98af1ac9945212b568e0794e2854761abb80804a (diff) |
Initialize 'reclaimNodes'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125179 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h b/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h index 8c65608c7f..3cde59ce75 100644 --- a/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h +++ b/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h @@ -290,7 +290,9 @@ public: return V; } - ExplodedGraph() : NumNodes(0), recentlyAllocatedNodes(0), freeNodes(0) {} + ExplodedGraph() + : NumNodes(0), recentlyAllocatedNodes(0), + freeNodes(0), reclaimNodes(false) {} ~ExplodedGraph(); |