[cfe-commits] r46079 - /cfe/trunk/include/clang/Analysis/PathSensitive/ExplodedGraph.h
Ted Kremenek
kremenek at apple.com
Wed Jan 16 10:59:11 PST 2008
Author: kremenek
Date: Wed Jan 16 12:59:09 2008
New Revision: 46079
URL: http://llvm.org/viewvc/llvm-project?rev=46079&view=rev
Log:
Added missing ctor to ExplodedGraph.
Modified:
cfe/trunk/include/clang/Analysis/PathSensitive/ExplodedGraph.h
Modified: cfe/trunk/include/clang/Analysis/PathSensitive/ExplodedGraph.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/PathSensitive/ExplodedGraph.h?rev=46079&r1=46078&r2=46079&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/ExplodedGraph.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/ExplodedGraph.h Wed Jan 16 12:59:09 2008
@@ -253,6 +253,8 @@
}
public:
+ ExplodedGraph() : CheckerState(new CheckerTy()) {}
+
/// getCheckerState - Returns the internal checker state associated
/// with the exploded graph. Ownership remains with the ExplodedGraph
/// objecct.
More information about the cfe-commits
mailing list