enum Sema::CheckTemplateArgumentKind
Description
Specifies the context in which a particular template argument is being checked.
Declared at: clang/include/clang/Sema/Sema.h:8068
Enumerators
Name | Value | Comment |
---|---|---|
CTAK_Specified | 0 | The template argument was specified in the code or was instantiated with some deduced template arguments. |
CTAK_Deduced | 1 | The template argument was deduced via template argument deduction. |
CTAK_DeducedFromArrayBound | 2 | The template argument was deduced from an array bound via template argument deduction. |