clang
10.0.0git
|
#include "clang/Sema/DeclSpec.h"
Public Attributes | |
unsigned | NumExplicitTemplateParams = 0 |
The number of parameters in the template parameter list that were explicitly specified by the user, as opposed to being invented by use of an auto parameter. More... | |
unsigned | AutoTemplateParameterDepth = 0 |
If this is a generic lambda or abbreviated function template, use this as the depth of each 'auto' parameter, during initial AST construction. More... | |
SmallVector< NamedDecl *, 4 > | TemplateParams |
Store the list of the template parameters for a generic lambda or an abbreviated function template. More... | |
Definition at line 2680 of file DeclSpec.h.
unsigned clang::InventedTemplateParameterInfo::AutoTemplateParameterDepth = 0 |
If this is a generic lambda or abbreviated function template, use this as the depth of each 'auto' parameter, during initial AST construction.
Definition at line 2688 of file DeclSpec.h.
Referenced by InventTemplateParameter().
unsigned clang::InventedTemplateParameterInfo::NumExplicitTemplateParams = 0 |
The number of parameters in the template parameter list that were explicitly specified by the user, as opposed to being invented by use of an auto parameter.
Definition at line 2684 of file DeclSpec.h.
Referenced by clang::Sema::ActOnLambdaExplicitTemplateParameterList(), and clang::Sema::ActOnStartOfLambdaDefinition().
SmallVector<NamedDecl*, 4> clang::InventedTemplateParameterInfo::TemplateParams |
Store the list of the template parameters for a generic lambda or an abbreviated function template.
If this is a generic lambda or abbreviated function template, this holds the explicit template parameters followed by the auto parameters converted into TemplateTypeParmDecls. It can be used to construct the generic lambda or abbreviated template's template parameter list during initial AST construction.
Definition at line 2697 of file DeclSpec.h.
Referenced by clang::Sema::ActOnLambdaExplicitTemplateParameterList(), getGenericLambdaTemplateParameterList(), and InventTemplateParameter().