From: Ted Kremenek Date: Wed, 16 Jan 2008 18:59:09 +0000 (+0000) Subject: Added missing ctor to ExplodedGraph. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b2d763a7987a2c5854d302f82f8b3c7ac5b92e20;p=clang Added missing ctor to ExplodedGraph. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46079 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/include/clang/Analysis/PathSensitive/ExplodedGraph.h index 01266f3964..5b2ee02c4a 100644 --- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h +++ b/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.