This rule is Obsolete | |
Synopsis: | The names of data members and member functions are in PascalCase |
Language: | C++ |
Severity Level: | 10 |
Category: | Naming |
Description: |
The underscore is not recommended in PascalCase names, except in the rare cases where confusion could arise, e.g. GetTimeSpanIn_ms.
Exception: prefix "m_" is allowed for data members, e.g. m_IsAllowed. |