From: Ted Kremenek Date: Tue, 15 Jan 2008 23:54:22 +0000 (+0000) Subject: Added ctor to GRNodeBuilder. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4992b7333c3ede5a97c8657833304df8d9a00ac1;p=clang Added ctor to GRNodeBuilder. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46035 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/PathSensitive/GREngine.h b/include/clang/Analysis/PathSensitive/GREngine.h index 8d4087421e..b37e159c1b 100644 --- a/include/clang/Analysis/PathSensitive/GREngine.h +++ b/include/clang/Analysis/PathSensitive/GREngine.h @@ -136,6 +136,8 @@ class GRNodeBuilder { GRNodeBuilderImpl& NB; public: + GRNodeBuilder(GRNodeBuilderImpl& nb) : NB(nb) {} + const GraphTy& getGraph() const { return static_cast(NB.getGraph()); }