And this is exactly why bitshift is a good idea

This commit is contained in:
variableundefined
2019-09-26 12:22:20 -04:00
parent 8d7389a2b3
commit be1edfad12
+3 -3
View File
@@ -336,9 +336,9 @@ This prevents nesting levels from getting deeper then they need to be.
```
Is preferable to
```
#define MACRO_ONE 0
#define MACRO_TWO 1
#define MACRO_THREE 2
#define MACRO_ONE 1
#define MACRO_TWO 2
#define MACRO_THREE 4
```
This make the code more readable and less prone to error