[cfe-commits] r125179 - /cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h
Ted Kremenek
kremenek at apple.com
Tue Feb 8 22:04:59 PST 2011
Author: kremenek
Date: Wed Feb 9 00:04:59 2011
New Revision: 125179
URL: http://llvm.org/viewvc/llvm-project?rev=125179&view=rev
Log:
Initialize 'reclaimNodes'.
Modified:
cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h
Modified: cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h?rev=125179&r1=125178&r2=125179&view=diff
==============================================================================
--- cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h (original)
+++ cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h Wed Feb 9 00:04:59 2011
@@ -290,7 +290,9 @@
return V;
}
- ExplodedGraph() : NumNodes(0), recentlyAllocatedNodes(0), freeNodes(0) {}
+ ExplodedGraph()
+ : NumNodes(0), recentlyAllocatedNodes(0),
+ freeNodes(0), reclaimNodes(false) {}
~ExplodedGraph();
More information about the cfe-commits
mailing list