diff options
author | Mat M <mathew1800@gmail.com> | 2018-10-06 16:11:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-06 16:11:35 +0200 |
commit | 6d4f5b967372a0d9887bf2febefb96e71a054ac6 (patch) | |
tree | 495ecfe426d5e81016e4b3fe646d33ab028c643a | |
parent | Merge pull request #1449 from lioncash/link (diff) | |
parent | CONTRIBUTING.md - remove note about casting numeric types (diff) | |
download | yuzu-6d4f5b967372a0d9887bf2febefb96e71a054ac6.tar yuzu-6d4f5b967372a0d9887bf2febefb96e71a054ac6.tar.gz yuzu-6d4f5b967372a0d9887bf2febefb96e71a054ac6.tar.bz2 yuzu-6d4f5b967372a0d9887bf2febefb96e71a054ac6.tar.lz yuzu-6d4f5b967372a0d9887bf2febefb96e71a054ac6.tar.xz yuzu-6d4f5b967372a0d9887bf2febefb96e71a054ac6.tar.zst yuzu-6d4f5b967372a0d9887bf2febefb96e71a054ac6.zip |
-rw-r--r-- | CONTRIBUTING.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 008dc5b50..1b2056885 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -22,7 +22,7 @@ If clang format is found, then cmake will add a custom build target that can be * Don't ever introduce new external dependencies into Core * Don't use any platform specific code in Core * Use namespaces often -* Avoid the use of C-style casts and instead prefer C++-style `static_cast` and `reinterpret_cast`. Try to avoid using `dynamic_cast`. Never use `const_cast`. The only exception to this rule is for casting between two numeric types, where C-style casts are encouraged for brevity and readability. +* Avoid the use of C-style casts and instead prefer C++-style `static_cast` and `reinterpret_cast`. Try to avoid using `dynamic_cast`. Never use `const_cast`. ### Naming Rules * Functions: `PascalCase` |