[cfe-commits] r48885 - /cfe/trunk/include/clang/Analysis/PathSensitive/AnnotatedPath.h

Ted Kremenek kremenek at apple.com
Thu Mar 27 10:16:06 PDT 2008


Author: kremenek
Date: Thu Mar 27 12:16:06 2008
New Revision: 48885

URL: http://llvm.org/viewvc/llvm-project?rev=48885&view=rev
Log:
Add default ctor implementation.

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

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

==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/AnnotatedPath.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/AnnotatedPath.h Thu Mar 27 12:16:06 2008
@@ -47,7 +47,7 @@
   typedef std::list<AnnotatedNode<STATE> >  impl;
   impl path;
 public:
-  AnnotatedPath();
+  AnnotatedPath() {}
   
   void push_back(ExplodedNode<STATE>* N, const std::string& s, Expr* E = NULL) {
     path.push_back(AnnotatedNode<STATE>(N, s, E));





More information about the cfe-commits mailing list