From: Ted Kremenek Date: Wed, 9 Feb 2011 06:04:59 +0000 (+0000) Subject: Initialize 'reclaimNodes'. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=824c547dc5d4451b9dbacc56621592fa010878f4;p=clang Initialize 'reclaimNodes'. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125179 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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();