diff options
| author | Ted Kremenek <kremenek@apple.com> | 2008-01-16 18:59:09 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2008-01-16 18:59:09 +0000 |
| commit | 34eb8bb3bd7001aecca770cc6720a6b2810308c3 (patch) | |
| tree | 30136750c758bc0614871fb1a4576be496b697f2 /clang | |
| parent | f81d2c9a06c7f2f8e3db41cf0ef00b158db91d05 (diff) | |
| download | bcm5719-llvm-34eb8bb3bd7001aecca770cc6720a6b2810308c3.tar.gz bcm5719-llvm-34eb8bb3bd7001aecca770cc6720a6b2810308c3.zip | |
Added missing ctor to ExplodedGraph.
llvm-svn: 46079
Diffstat (limited to 'clang')
| -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 01266f3964b..5b2ee02c4ae 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. |

