remove contentless bullet point
white space is for free, but thats not neccesairy
This commit is contained in:
parent
d14c8fa446
commit
2f269342c7
@ -21,7 +21,6 @@ Here are the conventions:
|
|||||||
* Add those extra parentheses to conditions, especially in C++:
|
* Add those extra parentheses to conditions, especially in C++:
|
||||||
- `if ((a == 1) && ((b == 2) || (c == 3)))` instead of ambiguous `if (a == 1 && b == 2 || c == 3)`
|
- `if ((a == 1) && ((b == 2) || (c == 3)))` instead of ambiguous `if (a == 1 && b == 2 || c == 3)`
|
||||||
- This helps prevent mistakes such as `if (a & 1 == 0)`
|
- This helps prevent mistakes such as `if (a & 1 == 0)`
|
||||||
*
|
|
||||||
* Use the provided wrappers for OS stuff:
|
* Use the provided wrappers for OS stuff:
|
||||||
- Threading is done by inheriting from `cIsThread`, thread synchronization through `cCriticalSection` and `cEvent`, file access and filesystem operations through the `cFile` class, high-precision timers through `cTimer`, high-precision sleep through `cSleep`
|
- Threading is done by inheriting from `cIsThread`, thread synchronization through `cCriticalSection` and `cEvent`, file access and filesystem operations through the `cFile` class, high-precision timers through `cTimer`, high-precision sleep through `cSleep`
|
||||||
* No magic numbers, use named constants:
|
* No magic numbers, use named constants:
|
||||||
|
Loading…
Reference in New Issue
Block a user