diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-09-25 23:53:26 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-09-25 23:53:26 +0000 |
commit | 0b60d9e0097e2d6a1a5e62396967e207c4a772f2 (patch) | |
tree | c91322b07b10cd56d8368857db6c32d9d1940905 /lib/Sema/SemaTemplate.cpp | |
parent | 741652428309a3ba5d9460de4d351dcbbf7b37e4 (diff) |
Use explicitly-specified template argument lists to help naming
explicit template specializations, when available.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82824 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaTemplate.cpp')
-rw-r--r-- | lib/Sema/SemaTemplate.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/Sema/SemaTemplate.cpp b/lib/Sema/SemaTemplate.cpp index 27e8edd962..e0c1afbf67 100644 --- a/lib/Sema/SemaTemplate.cpp +++ b/lib/Sema/SemaTemplate.cpp @@ -1037,9 +1037,8 @@ Sema::MatchTemplateParametersToScopeSpecifier(SourceLocation DeclStartLoc, /// \brief Translates template arguments as provided by the parser /// into template arguments used by semantic analysis. -static void -translateTemplateArguments(ASTTemplateArgsPtr &TemplateArgsIn, - SourceLocation *TemplateArgLocs, +void Sema::translateTemplateArguments(ASTTemplateArgsPtr &TemplateArgsIn, + SourceLocation *TemplateArgLocs, llvm::SmallVector<TemplateArgument, 16> &TemplateArgs) { TemplateArgs.reserve(TemplateArgsIn.size()); @@ -3409,7 +3408,8 @@ Sema::DeclResult Sema::ActOnExplicitInstantiation(Scope *S, return DeclPtrTy(); } - // Translate the parser's template argument list in our AST format. + // If the declarator is a template-id, translate the parser's template + // argument list into our AST format. bool HasExplicitTemplateArgs = false; llvm::SmallVector<TemplateArgument, 16> TemplateArgs; if (D.getKind() == Declarator::DK_TemplateId) { @@ -3423,8 +3423,7 @@ Sema::DeclResult Sema::ActOnExplicitInstantiation(Scope *S, TemplateArgs); HasExplicitTemplateArgs = true; } - - + // C++ [temp.explicit]p1: // A [...] function [...] can be explicitly instantiated from its template. // A member function [...] of a class template can be explicitly |