From 3ea400bd4ad9768300857c5c57159af318fd9b0d Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Wed, 14 Nov 2012 21:45:43 +0000 Subject: [PATCH] ParseTemplate.cpp: Prune obsolete descriptions in ParseSingleDeclarationAfterTemplate(), for now. [-Wdocumentation] /// \param TemplateParams if non-NULL, the template parameter lists /// that preceded this declaration. In this case, the declaration is a /// template declaration, out-of-line definition of a template, or an /// explicit template specialization. When NULL, the declaration is an /// explicit template instantiation. /// /// \param TemplateLoc when TemplateParams is NULL, the location of /// the 'template' keyword that indicates that we have an explicit /// template instantiation. llvm-svn: 167982 --- clang/lib/Parse/ParseTemplate.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/clang/lib/Parse/ParseTemplate.cpp b/clang/lib/Parse/ParseTemplate.cpp index 900e60f..26f9d1d 100644 --- a/clang/lib/Parse/ParseTemplate.cpp +++ b/clang/lib/Parse/ParseTemplate.cpp @@ -172,16 +172,6 @@ Parser::ParseTemplateDeclarationOrSpecialization(unsigned Context, /// \brief Parse a single declaration that declares a template, /// template specialization, or explicit instantiation of a template. /// -/// \param TemplateParams if non-NULL, the template parameter lists -/// that preceded this declaration. In this case, the declaration is a -/// template declaration, out-of-line definition of a template, or an -/// explicit template specialization. When NULL, the declaration is an -/// explicit template instantiation. -/// -/// \param TemplateLoc when TemplateParams is NULL, the location of -/// the 'template' keyword that indicates that we have an explicit -/// template instantiation. -/// /// \param DeclEnd will receive the source location of the last token /// within this declaration. /// -- 2.7.4