cstat_enable
In this section:
Syntax
#pragma cstat_enable="tag"[,"tag"...]
Parameters
| The tag of a C-STAT check. |
Description
Use this pragma directive to unsuppress the specified C-STAT check until the end of the compilation unit, or until a matching #pragma cstat_restore directive is encountered.
Example
#pragma cstat_enable = "MISRAC2012-Rule-10.3"
// ...
// Messages about rule 10.3 not suppressed here
// ...