[cfe-commits] r61930 - /cfe/trunk/include/clang/AST/DeclBase.h

Ted Kremenek kremenek at apple.com
Thu Jan 8 10:54:40 PST 2009


Author: kremenek
Date: Thu Jan  8 12:54:40 2009
New Revision: 61930

URL: http://llvm.org/viewvc/llvm-project?rev=61930&view=rev
Log:
Initialized member variable 'Implicit' in Decl's ctor.

Modified:
    cfe/trunk/include/clang/AST/DeclBase.h

Modified: cfe/trunk/include/clang/AST/DeclBase.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/DeclBase.h?rev=61930&r1=61929&r2=61930&view=diff

==============================================================================
--- cfe/trunk/include/clang/AST/DeclBase.h (original)
+++ cfe/trunk/include/clang/AST/DeclBase.h Thu Jan  8 12:54:40 2009
@@ -156,7 +156,7 @@
   friend class CXXClassMemberWrapper;
 
   Decl(Kind DK, SourceLocation L) : Loc(L), DeclKind(DK), InvalidDecl(0),
-    HasAttrs(false) {
+    HasAttrs(false), Implicit(false) {
     if (Decl::CollectingStats()) addDeclKind(DK);
   }
 





More information about the cfe-commits mailing list