Initialize 'reclaimNodes'.

llvm-svn: 125179
This commit is contained in:
Ted Kremenek 2011-02-09 06:04:59 +00:00
parent 1e8200d7ba
commit 435c80f5ea
1 changed files with 3 additions and 1 deletions

View File

@ -290,7 +290,9 @@ public:
return V; return V;
} }
ExplodedGraph() : NumNodes(0), recentlyAllocatedNodes(0), freeNodes(0) {} ExplodedGraph()
: NumNodes(0), recentlyAllocatedNodes(0),
freeNodes(0), reclaimNodes(false) {}
~ExplodedGraph(); ~ExplodedGraph();