[cfe-commits] r46035 - /cfe/trunk/include/clang/Analysis/PathSensitive/GREngine.h

Ted Kremenek kremenek at apple.com
Tue Jan 15 15:54:22 PST 2008


Author: kremenek
Date: Tue Jan 15 17:54:22 2008
New Revision: 46035

URL: http://llvm.org/viewvc/llvm-project?rev=46035&view=rev
Log:
Added ctor to GRNodeBuilder.

Modified:
    cfe/trunk/include/clang/Analysis/PathSensitive/GREngine.h

Modified: cfe/trunk/include/clang/Analysis/PathSensitive/GREngine.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/PathSensitive/GREngine.h?rev=46035&r1=46034&r2=46035&view=diff

==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/GREngine.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/GREngine.h Tue Jan 15 17:54:22 2008
@@ -136,6 +136,8 @@
   GRNodeBuilderImpl& NB;
   
 public:
+  GRNodeBuilder(GRNodeBuilderImpl& nb) : NB(nb) {}
+  
   const GraphTy& getGraph() const {
     return static_cast<const GraphTy&>(NB.getGraph());
   }





More information about the cfe-commits mailing list