From 34eb8bb3bd7001aecca770cc6720a6b2810308c3 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Wed, 16 Jan 2008 18:59:09 +0000 Subject: [PATCH] Added missing ctor to ExplodedGraph. llvm-svn: 46079 --- clang/include/clang/Analysis/PathSensitive/ExplodedGraph.h | 2 ++ 1 file changed, 2 insertions(+) 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.