[cfe-commits] r81510 - /cfe/trunk/lib/Frontend/PrintParserCallbacks.cpp
Daniel Dunbar
daniel at zuster.org
Thu Sep 10 23:34:15 PDT 2009
Author: ddunbar
Date: Fri Sep 11 01:34:14 2009
New Revision: 81510
URL: http://llvm.org/viewvc/llvm-project?rev=81510&view=rev
Log:
Update prototype.
Modified:
cfe/trunk/lib/Frontend/PrintParserCallbacks.cpp
Modified: cfe/trunk/lib/Frontend/PrintParserCallbacks.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Frontend/PrintParserCallbacks.cpp?rev=81510&r1=81509&r2=81510&view=diff
==============================================================================
--- cfe/trunk/lib/Frontend/PrintParserCallbacks.cpp (original)
+++ cfe/trunk/lib/Frontend/PrintParserCallbacks.cpp Fri Sep 11 01:34:14 2009
@@ -193,12 +193,12 @@
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";
More information about the cfe-commits
mailing list