From 49193c7b0a2deb0f4d1f7e8a44f46bd278f523d6 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Wed, 14 Nov 2012 02:21:48 +0000 Subject: [PATCH] SemaTemplateDeduction.cpp: Prune two obsolete descriptions. [-Wdocumentation] * getMostSpecialized() /// \param Index if non-NULL and the result of this function is non-nULL, /// receives the index corresponding to the resulting function template /// specialization. * DeduceTemplateArguments() /// \param Name the name of the function being called. This is only significant /// when the function template is a conversion function template, in which /// case this routine will also perform template argument deduction based on /// the function to which git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167909 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/SemaTemplateDeduction.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lib/Sema/SemaTemplateDeduction.cpp b/lib/Sema/SemaTemplateDeduction.cpp index bf4533d699..6adc95cc7a 100644 --- a/lib/Sema/SemaTemplateDeduction.cpp +++ b/lib/Sema/SemaTemplateDeduction.cpp @@ -3045,11 +3045,6 @@ DeduceTemplateArgumentByListElement(Sema &S, /// /// \param Args the function call arguments /// -/// \param Name the name of the function being called. This is only significant -/// when the function template is a conversion function template, in which -/// case this routine will also perform template argument deduction based on -/// the function to which -/// /// \param Specialization if template argument deduction was successful, /// this will be set to the function template specialization produced by /// template argument deduction. @@ -4052,10 +4047,6 @@ static bool isSameTemplate(TemplateDecl *T1, TemplateDecl *T2) { /// in this diagnostic should be unbound, which will correspond to the string /// describing the template arguments for the function template specialization. /// -/// \param Index if non-NULL and the result of this function is non-nULL, -/// receives the index corresponding to the resulting function template -/// specialization. -/// /// \returns the most specialized function template specialization, if /// found. Otherwise, returns SpecEnd. /// -- 2.40.0