[cfe-commits] r111510 - /cfe/trunk/include/clang/AST/Attr.h

Sean Hunt rideau3 at gmail.com
Wed Aug 18 20:06:50 PDT 2010


Author: coppro
Date: Wed Aug 18 22:06:50 2010
New Revision: 111510

URL: http://llvm.org/viewvc/llvm-project?rev=111510&view=rev
Log:
Add a missing initializer.

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

Modified: cfe/trunk/include/clang/AST/Attr.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Attr.h?rev=111510&r1=111509&r2=111510&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Attr.h (original)
+++ cfe/trunk/include/clang/AST/Attr.h Wed Aug 18 22:06:50 2010
@@ -84,7 +84,7 @@
 
 protected:
   Attr(attr::Kind AK, SourceLocation L)
-    : Loc(L), AttrKind(AK) {}
+    : Loc(L), AttrKind(AK), Inherited(false) {}
 
 public:
 





More information about the cfe-commits mailing list