diff options
author | John McCall <rjmccall@apple.com> | 2009-07-31 02:45:11 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2009-07-31 02:45:11 +0000 |
commit | 9bb74a5ef52c6dac181ffba73fbf65b42aee265c (patch) | |
tree | 2663e725863e1592a18f42623a5adf0d5c93b93e /clang/lib/Sema/Sema.h | |
parent | b6d6aa2d22d8f883c988ed89d6e0d2a141268bf4 (diff) | |
download | bcm5719-llvm-9bb74a5ef52c6dac181ffba73fbf65b42aee265c.tar.gz bcm5719-llvm-9bb74a5ef52c6dac181ffba73fbf65b42aee265c.zip |
Rename Action::TagKind to Action::TagUseKind, which removes both a misnomer
and a name collision.
llvm-svn: 77658
Diffstat (limited to 'clang/lib/Sema/Sema.h')
-rw-r--r-- | clang/lib/Sema/Sema.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h index 989dc76a706..e41172a0d55 100644 --- a/clang/lib/Sema/Sema.h +++ b/clang/lib/Sema/Sema.h @@ -542,7 +542,7 @@ public: SourceLocation NewTagLoc, const IdentifierInfo &Name); - virtual DeclPtrTy ActOnTag(Scope *S, unsigned TagSpec, TagKind TK, + virtual DeclPtrTy ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK, SourceLocation KWLoc, const CXXScopeSpec &SS, IdentifierInfo *Name, SourceLocation NameLoc, AttributeList *Attr, AccessSpecifier AS, @@ -2129,7 +2129,7 @@ public: TemplateParameterList **ParamLists, unsigned NumParamLists); - DeclResult CheckClassTemplate(Scope *S, unsigned TagSpec, TagKind TK, + DeclResult CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK, SourceLocation KWLoc, const CXXScopeSpec &SS, IdentifierInfo *Name, SourceLocation NameLoc, AttributeList *Attr, @@ -2182,7 +2182,7 @@ public: bool &MirrorsPrimaryTemplate); virtual DeclResult - ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec, TagKind TK, + ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec, TagUseKind TUK, SourceLocation KWLoc, const CXXScopeSpec &SS, TemplateTy Template, |