changeset 2:1e34b51d9c52

Add note about if 0
author David Demelier <markand@malikania.fr>
date Wed, 01 Feb 2017 10:58:57 +0100
parents 9bf9b4634339
children 44f548c50e16
files STYLE_CPP.md
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/STYLE_CPP.md	Wed Feb 01 10:51:00 2017 +0100
+++ b/STYLE_CPP.md	Wed Feb 01 10:58:57 2017 +0100
@@ -128,6 +128,12 @@
 
     // Short comment
 
+Use `#if 0` to comment blocks of code.
+
+#if 0
+    broken_stuff();
+#endif
+
 ### Includes
 
 The includes should always come in the following order.