diff options
author | Richard Trieu <rtrieu@google.com> | 2011-09-09 03:18:59 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2011-09-09 03:18:59 +0000 |
commit | 9becef691d3026698e3d95f024fce79519f99355 (patch) | |
tree | 68cfbba78721c0f31bd8b7b441220fe8d79741f2 /clang/lib/Sema/SemaTemplate.cpp | |
parent | 3481fcd86920a9334c2a3cd939f129a35c7d7ebe (diff) | |
download | bcm5719-llvm-9becef691d3026698e3d95f024fce79519f99355.tar.gz bcm5719-llvm-9becef691d3026698e3d95f024fce79519f99355.zip |
Changed references of BaseTy, MemInitTy, CXXScopeTy, TemplateParamsTy to CXXBaseSpecifier, CXXCtorInitializer, NestedNameSpecifier, TemplateParameterList and removed their typedefs.
llvm-svn: 139350
Diffstat (limited to 'clang/lib/Sema/SemaTemplate.cpp')
-rw-r--r-- | clang/lib/Sema/SemaTemplate.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaTemplate.cpp b/clang/lib/Sema/SemaTemplate.cpp index db60f179216..80e972fae73 100644 --- a/clang/lib/Sema/SemaTemplate.cpp +++ b/clang/lib/Sema/SemaTemplate.cpp @@ -714,7 +714,7 @@ Decl *Sema::ActOnNonTypeTemplateParameter(Scope *S, Declarator &D, /// has been parsed. S is the current scope. Decl *Sema::ActOnTemplateTemplateParameter(Scope* S, SourceLocation TmpLoc, - TemplateParamsTy *Params, + TemplateParameterList *Params, SourceLocation EllipsisLoc, IdentifierInfo *Name, SourceLocation NameLoc, @@ -785,7 +785,7 @@ Decl *Sema::ActOnTemplateTemplateParameter(Scope* S, /// ActOnTemplateParameterList - Builds a TemplateParameterList that /// contains the template parameters in Params/NumParams. -Sema::TemplateParamsTy * +TemplateParameterList * Sema::ActOnTemplateParameterList(unsigned Depth, SourceLocation ExportLoc, SourceLocation TemplateLoc, |