diff options
author | Anders Carlsson <andersca@mac.com> | 2009-06-12 19:58:00 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-06-12 19:58:00 +0000 |
commit | 941df7dac2c733bad57342a01ca4c8dac956ef63 (patch) | |
tree | 7f8bf68ecf6197635756052f85768ad3c7108809 /lib/Sema/SemaTemplate.cpp | |
parent | ba1ecb564c05c2b749193e8deef1df3b69ea3f54 (diff) |
Parse support for C++0x type parameter packs.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73247 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaTemplate.cpp')
-rw-r--r-- | lib/Sema/SemaTemplate.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Sema/SemaTemplate.cpp b/lib/Sema/SemaTemplate.cpp index d08e268b63..5fb1fb89f0 100644 --- a/lib/Sema/SemaTemplate.cpp +++ b/lib/Sema/SemaTemplate.cpp @@ -140,7 +140,8 @@ TemplateDecl *Sema::AdjustDeclIfTemplate(DeclPtrTy &D) { /// ParamName is the location of the parameter name (if any). /// If the type parameter has a default argument, it will be added /// later via ActOnTypeParameterDefault. -Sema::DeclPtrTy Sema::ActOnTypeParameter(Scope *S, bool Typename, +Sema::DeclPtrTy Sema::ActOnTypeParameter(Scope *S, bool Typename, bool Ellipsis, + SourceLocation EllipsisLoc, SourceLocation KeyLoc, IdentifierInfo *ParamName, SourceLocation ParamNameLoc, |