Clarify that namespaces should be utilised in C++

This commit is contained in:
Alex Hirsch 2019-06-07 15:26:11 +02:00
parent 2d2fc889ca
commit 3cc1d691da

View File

@ -296,6 +296,10 @@ The compiler guarantees the following:
- Functions do not interact directly with `stdin`, `stdout`, or `stderr`. - Functions do not interact directly with `stdin`, `stdout`, or `stderr`.
- No function terminates the application on correct usage. - No function terminates the application on correct usage.
*Note for C++*:
Do not prefix symbols.
Put everything in an `mcc` namespace instead.
### Logging ### Logging
Logging infrastructure may be present; however, all log output is disabled by default. Logging infrastructure may be present; however, all log output is disabled by default.