diff options
author | Anders Carlsson <andersca@mac.com> | 2010-02-07 01:09:23 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-02-07 01:09:23 +0000 |
commit | 2a3503d85374ecc2b8e862a8ed9cec8f10f72e84 (patch) | |
tree | 7308dfdb517d8449dcf3f1fa290686d79e7b0d31 /include/clang/Parse/Action.h | |
parent | a994ee4b197554282ae6b222c3284ccaa3a6484c (diff) |
Add attributes to namespace decls.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95510 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index 91854aa480..ec542f08c3 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -1277,7 +1277,8 @@ public: /// definition. virtual DeclPtrTy ActOnStartNamespaceDef(Scope *S, SourceLocation IdentLoc, IdentifierInfo *Ident, - SourceLocation LBrace) { + SourceLocation LBrace, + AttributeList *AttrList) { return DeclPtrTy(); } |