diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-10-03 02:03:53 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-10-03 02:03:53 +0000 |
commit | 1bfe1c2129771c06fb58ae5e8c079ae30e138309 (patch) | |
tree | a21f078541b4fbd646d1840efa43ae343b80cd51 /Driver/PrintParserCallbacks.cpp | |
parent | 29471a1341a074106a9ae7247f1e3788628dc48c (diff) |
Pass postfix attributes to ActOnFields.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56992 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/PrintParserCallbacks.cpp')
-rw-r--r-- | Driver/PrintParserCallbacks.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Driver/PrintParserCallbacks.cpp b/Driver/PrintParserCallbacks.cpp index caae11b861..b616268376 100644 --- a/Driver/PrintParserCallbacks.cpp +++ b/Driver/PrintParserCallbacks.cpp @@ -205,7 +205,8 @@ namespace { virtual void ActOnFields(Scope* S, SourceLocation RecLoc, DeclTy *TagDecl, DeclTy **Fields, unsigned NumFields, - SourceLocation LBrac, SourceLocation RBrac) { + SourceLocation LBrac, SourceLocation RBrac, + AttributeList *AttrList) { llvm::cout << __FUNCTION__ << "\n"; } |