diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-11-14 02:21:48 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-11-14 02:21:48 +0000 |
commit | bae23ed8c5b006756edaef1b62e2555fa65c41df (patch) | |
tree | 7b3a3a8869659264610ef009fdfc6264545c9baa | |
parent | 793642fe0414560b939c99383468c7518d40399f (diff) | |
download | bcm5719-llvm-bae23ed8c5b006756edaef1b62e2555fa65c41df.tar.gz bcm5719-llvm-bae23ed8c5b006756edaef1b62e2555fa65c41df.zip |
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
llvm-svn: 167909
-rw-r--r-- | clang/lib/Sema/SemaTemplateDeduction.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/clang/lib/Sema/SemaTemplateDeduction.cpp b/clang/lib/Sema/SemaTemplateDeduction.cpp index bf4533d6998..6adc95cc7a9 100644 --- a/clang/lib/Sema/SemaTemplateDeduction.cpp +++ b/clang/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. /// |