Update CONTRIBUTING.md [skip ci]

This commit is contained in:
MattKC 2023-07-02 01:11:49 -07:00 committed by GitHub
parent e16249b672
commit 5d099115fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,6 +30,7 @@ In general, we're not exhaustively strict about coding style, but there are some
- `m_camelCase` for member variables.
- `g_camelCase` for global variables.
- `p_camelCase` for function parameters.
- Instead of C++ primitives (e.g. `int`, `long`, etc.), use types in `mxtypes.h` instead. This will help us ensure that variables will be the correct size regardless of the underlying compiler/platform/architecture.
## Questions?