From: Douglas Gregor Date: Tue, 4 Jan 2011 22:26:51 +0000 (+0000) Subject: Remove an unnecessary FIXME for variadic templates X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5471cbc0bdbe9d6711907a8c5251daed0155c306;p=clang Remove an unnecessary FIXME for variadic templates git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122848 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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));