mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
842 B
842 B
category
| category |
|---|
| feature |
- New predicates
getARequiresClause,getTemplateRequiresClauseandgetFunctionRequiresClausewere added to theFunctionDeclarationEntryclass, which yield the requires clauses when the entry represents a function template declaration with requires clauses. - A new predicate
getRequiresClausewas added to theTypeDeclarationEntryclass, which yields the requires clause when the entry represents a class template declaration with a requires clause. - A new predicate
getRequiresClausewas added to theVariableDeclarationEntryclass, which yields the requires clause when the entry represents a variable template declaration with a requires clause. - A new predicate
getTypeConstraintwas added to theTypeTemplateParameterclass, which yields the type constraint of the parameter if it exists.