aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2011-02-09 06:04:59 +0000
committerTed Kremenek <kremenek@apple.com>2011-02-09 06:04:59 +0000
commit824c547dc5d4451b9dbacc56621592fa010878f4 (patch)
treeed00aca8c5a718888c4b5c91a8fcfc19697cb7c3
parent98af1ac9945212b568e0794e2854761abb80804a (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.h4
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();