aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Analysis/PathSensitive/ExplodedGraph.h
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-01-16 18:59:09 +0000
committerTed Kremenek <kremenek@apple.com>2008-01-16 18:59:09 +0000
commitb2d763a7987a2c5854d302f82f8b3c7ac5b92e20 (patch)
tree76d73260a0b8918305091cca9b34362248948513 /include/clang/Analysis/PathSensitive/ExplodedGraph.h
parent5e2fa75c211519719687a81c6b6db85fbaa80254 (diff)
Added missing ctor to ExplodedGraph.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46079 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/PathSensitive/ExplodedGraph.h')
-rw-r--r--include/clang/Analysis/PathSensitive/ExplodedGraph.h2
1 files changed, 2 insertions, 0 deletions
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.