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 | 435c80f5eae698f29ecde6fa69c43e1141436f82 (patch) | |
| tree | 3cb74af6658e0f40be64a0bbe132a3574baf80ac | |
| parent | 1e8200d7baa4aee1b8e52a575896338d1e58d749 (diff) | |
| download | bcm5719-llvm-435c80f5eae698f29ecde6fa69c43e1141436f82.tar.gz bcm5719-llvm-435c80f5eae698f29ecde6fa69c43e1141436f82.zip | |
Initialize 'reclaimNodes'.
llvm-svn: 125179
| -rw-r--r-- | clang/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h b/clang/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h index 8c65608c7fe..3cde59ce759 100644 --- a/clang/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h +++ b/clang/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(); |

