From be1edfad12e1815cad1ac6a2548fa95a9ab1f08e Mon Sep 17 00:00:00 2001 From: variableundefined <40092670+variableundefined@users.noreply.github.com> Date: Thu, 26 Sep 2019 12:22:20 -0400 Subject: [PATCH] And this is exactly why bitshift is a good idea --- .github/CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index f23092c56c2..539d7dd3372 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -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