From 187180f986d515f7b2400a1ddc871c4177fe22e9 Mon Sep 17 00:00:00 2001 From: "Vladimir Golovnev (Glassez)" Date: Tue, 13 Jan 2015 22:30:12 +0300 Subject: [PATCH] Fix internal conflicts in CODING_GUIDELINES.md. --- CODING_GUIDELINES.md | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/CODING_GUIDELINES.md b/CODING_GUIDELINES.md index 50d9d067e..0fea34d88 100644 --- a/CODING_GUIDELINES.md +++ b/CODING_GUIDELINES.md @@ -43,11 +43,11 @@ if (condition) { //code } -for(int a=0; a0) return; -c = 100/b; +if (b > 0) return; +c = 100 / b; ``` #### c. Using curly braces for single statement if blocks #### @@ -159,7 +163,7 @@ a += "b" Before and after the assignment there should be a space. One exception could be: for loops. ```c++ -for(int a=0; a