pr guidelines: drop N for namespace

This commit is contained in:
Vaxry 2025-12-05 20:24:36 +00:00
parent 9e3bd58cf4
commit 337b41be6d
Signed by: vaxry
GPG key ID: 665806380871D640

View file

@ -57,7 +57,6 @@ The current, and new code, should use `camelCase` with an `m_` prefix if the var
Additionally:
- classes have a prefix of `C`: `CMyClass`
- structs have a prefix of `S`: `SMyStruct`
- namespaces have a prefix of `N`: `NMyNamespace`
- interfaces have a prefix of `I`: `IMyInterface`
- global pointers for singletons have a prefix of `g_`: `g_someManager`
- constant variables are in CAPS: `const auto MYVARIABLE = ...`