From 1bf8d6f3a9dc636c3d1217d6fff11acf358e44be Mon Sep 17 00:00:00 2001 From: Sean Hunt Date: Thu, 19 Aug 2010 03:06:50 +0000 Subject: [PATCH] Add a missing initializer. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111510 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/Attr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/AST/Attr.h b/include/clang/AST/Attr.h index 1ba985cf17..4242493024 100644 --- a/include/clang/AST/Attr.h +++ b/include/clang/AST/Attr.h @@ -84,7 +84,7 @@ public: protected: Attr(attr::Kind AK, SourceLocation L) - : Loc(L), AttrKind(AK) {} + : Loc(L), AttrKind(AK), Inherited(false) {} public: -- 2.50.1