]> granicus.if.org Git - clang/commitdiff
Add a missing initializer.
authorSean Hunt <scshunt@csclub.uwaterloo.ca>
Thu, 19 Aug 2010 03:06:50 +0000 (03:06 +0000)
committerSean Hunt <scshunt@csclub.uwaterloo.ca>
Thu, 19 Aug 2010 03:06:50 +0000 (03:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111510 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Attr.h

index 1ba985cf17a2e1f3427a698148895b5a583893c7..4242493024dcc63532e08e8757e3dcb041119690 100644 (file)
@@ -84,7 +84,7 @@ public:
 
 protected:
   Attr(attr::Kind AK, SourceLocation L)
-    : Loc(L), AttrKind(AK) {}
+    : Loc(L), AttrKind(AK), Inherited(false) {}
 
 public: