diff options
author | Sean Hunt <scshunt@csclub.uwaterloo.ca> | 2010-08-19 03:06:50 +0000 |
---|---|---|
committer | Sean Hunt <scshunt@csclub.uwaterloo.ca> | 2010-08-19 03:06:50 +0000 |
commit | 1bf8d6f3a9dc636c3d1217d6fff11acf358e44be (patch) | |
tree | 69b9cd180db4090bce2c2433743956f3d12bae45 | |
parent | f54dbfdd16c053d6f305a4c48cb5aba0fe168f2d (diff) |
Add a missing initializer.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111510 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/Attr.h | 2 |
1 files changed, 1 insertions, 1 deletions
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: |