aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-09-11 06:34:14 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-09-11 06:34:14 +0000
commita4d3282683b22608b05a3d4566c96af269d99c5c (patch)
tree50e1c671ad44ab28aaff4df734d73813e2cfdfda /lib
parented90c4ee8cfed90be92741313e1715d308ed2fe3 (diff)
Update prototype.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@81510 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Frontend/PrintParserCallbacks.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Frontend/PrintParserCallbacks.cpp b/lib/Frontend/PrintParserCallbacks.cpp
index b537025aec..25b40c7818 100644
--- a/lib/Frontend/PrintParserCallbacks.cpp
+++ b/lib/Frontend/PrintParserCallbacks.cpp
@@ -193,12 +193,12 @@ namespace {
return TypeResult();
}
- virtual DeclPtrTy ActOnTag(Scope *S, unsigned TagType, TagUseKind TUK,
+ virtual DeclPtrTy ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
SourceLocation KWLoc, const CXXScopeSpec &SS,
IdentifierInfo *Name, SourceLocation NameLoc,
AttributeList *Attr, AccessSpecifier AS,
- MultiTemplateParamsArg TemplateParamLists,
- bool &Owned) {
+ MultiTemplateParamsArg TemplateParameterLists,
+ bool &OwnedDecl, bool &IsDependent) {
// TagType is an instance of DeclSpec::TST, indicating what kind of tag this
// is (struct/union/enum/class).
Out << __FUNCTION__ << "\n";