diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-01-04 22:26:51 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-01-04 22:26:51 +0000 |
commit | 5471cbc0bdbe9d6711907a8c5251daed0155c306 (patch) | |
tree | 8ec9d45e34e5be76d28caa18b0dfaadd6a9dbfd4 /lib/Sema/SemaTemplateDeduction.cpp | |
parent | 033a3cad525e5b221ba035ffc3e0abfa1241d90e (diff) |
Remove an unnecessary FIXME for variadic templates
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122848 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaTemplateDeduction.cpp')
-rw-r--r-- | lib/Sema/SemaTemplateDeduction.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Sema/SemaTemplateDeduction.cpp b/lib/Sema/SemaTemplateDeduction.cpp index 91d65c281a..3c3f3d7889 100644 --- a/lib/Sema/SemaTemplateDeduction.cpp +++ b/lib/Sema/SemaTemplateDeduction.cpp @@ -1608,8 +1608,6 @@ Sema::SubstituteExplicitTemplateArguments( // // Take all of the explicitly-specified arguments and put them into the // set of deduced template arguments. - // - // FIXME: Variadic templates? Deduced.reserve(TemplateParams->size()); for (unsigned I = 0, N = ExplicitArgumentList->size(); I != N; ++I) Deduced.push_back(ExplicitArgumentList->get(I)); |