...
| Code Block | ||
|---|---|---|
| ||
int _Page_Count;
// ...
|
Compliant Solution
To correct this error, use names not beginning with an underscore followed by an uppercase letter and not containing a double underscore.
| Code Block | ||
|---|---|---|
| ||
int PageCount;
// ...
|
Risk Assessment
Using a name reserved for the implementation may lead to unpredictable results.
Rule | Severity | Likelihood | Remediation Cost | Priority | Level |
|---|---|---|---|---|---|
DCL30-C | 1 (low) | 1 (unlikely) | 3 (low) | P1 P3 | L3 |
References
| Wiki Markup |
|---|
\[[ISO/IEC 14882-2003|AA. C++ References#ISO/IEC 14882-2003]\] Section 17.4.3.1.2, "Global names" |