Update Code_Conventions.mdx

This commit is contained in:
nchn27 2020-07-19 01:24:13 -04:00 committed by GitHub
parent c3d79d6ae6
commit ab2f237492
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,7 +83,8 @@ else
- Use `true / false` for boolean values, not `1 / 0`.
- Explain the use of any not well known standard library functions with comments that haven't been introduced before like `__builtin_ffs()` or `tie(a, b, c)` in C++.
- Write comments to explain any uncommon library functions like the C++ functions `__builtin_ffs()` or `tie(a, b, c)`.
- Write comments to explain anything weird in general! :)
<LanguageSection>