diff options
author | 2008-01-16 18:59:09 +0000 | |
---|---|---|
committer | 2008-01-16 18:59:09 +0000 | |
commit | 34eb8bb3bd7001aecca770cc6720a6b2810308c3 (patch) | |
tree | 30136750c758bc0614871fb1a4576be496b697f2 | |
parent | Fixed incorrect pointer mask. (diff) | |
download | llvm-project-34eb8bb3bd7001aecca770cc6720a6b2810308c3.tar.gz llvm-project-34eb8bb3bd7001aecca770cc6720a6b2810308c3.tar.bz2 llvm-project-34eb8bb3bd7001aecca770cc6720a6b2810308c3.zip |
Added missing ctor to ExplodedGraph.
llvm-svn: 46079
-rw-r--r-- | clang/include/clang/Analysis/PathSensitive/ExplodedGraph.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/clang/include/clang/Analysis/PathSensitive/ExplodedGraph.h index 01266f3964b7..5b2ee02c4aef 100644 --- a/clang/include/clang/Analysis/PathSensitive/ExplodedGraph.h +++ b/clang/include/clang/Analysis/PathSensitive/ExplodedGraph.h @@ -253,6 +253,8 @@ protected: } public: + ExplodedGraph() : CheckerState(new CheckerTy()) {} + /// getCheckerState - Returns the internal checker state associated /// with the exploded graph. Ownership remains with the ExplodedGraph /// objecct. |