From aba36813fb59f195d9d6ce0ce1836f370e62b1ab Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Wed, 19 Aug 2015 21:59:52 +0000 Subject: [PATCH] Add missing comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@245509 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Sema/Sema.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h index a46a761706..c0c9c6b9f2 100644 --- a/include/clang/Sema/Sema.h +++ b/include/clang/Sema/Sema.h @@ -6617,7 +6617,8 @@ public: /// the stack. struct InstantiatingTemplate { /// \brief Note that we are instantiating a class template, - /// function template, or a member thereof. + /// function template, variable template, alias template, + /// or a member thereof. InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, Decl *Entity, SourceRange InstantiationRange = SourceRange()); @@ -6663,6 +6664,8 @@ public: sema::TemplateDeductionInfo &DeductionInfo, SourceRange InstantiationRange = SourceRange()); + /// \brief Note that we are instantiating a default argument for a function + /// parameter. InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, ParmVarDecl *Param, ArrayRef TemplateArgs, -- 2.40.0