...
Code Block | ||
---|---|---|
| ||
const float pi = 3.14159f; float degrees; float radians; /* ... */ radians = degrees * pi / 180; |
Automated Detection
Compass/ROSE can detect most violations of this recommendation.
Risk Assessment
Failing to const
-qualify immutable objects can result in a constant being modified at runtime.
Recommendation | Severity | Likelihood | Remediation Cost | Priority | Level |
---|---|---|---|---|---|
DCL00-C | low | unlikely | high | P1 | L3 |
Automated Detection
Compass/ROSE can detect most violations of this recommendation.
Related Vulnerabilities
Search for vulnerabilities resulting from the violation of this rule on the CERT website.
...