qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] Drop braces around single statement rule


From: malc
Subject: [Qemu-devel] [PATCH] Drop braces around single statement rule
Date: Sat, 31 Jul 2010 20:23:34 +0400

History has shown that this particular rule is unenforcable.

Signed-off-by: malc <address@hidden>
---
 CODING_STYLE |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/CODING_STYLE b/CODING_STYLE
index 92036f3..e0b5376 100644
--- a/CODING_STYLE
+++ b/CODING_STYLE
@@ -54,16 +54,17 @@ readers that they are seeing a wrapped version; otherwise 
avoid this prefix.
 
 4. Block structure
 
-Every indented statement is braced; even if the block contains just one
-statement.  The opening brace is on the line that contains the control
-flow statement that introduces the new block; the closing brace is on the
-same line as the else keyword, or on a line by itself if there is no else
-keyword.  Example:
+The opening brace is on the line that contains the control flow
+statement that introduces the new block; the closing brace is on the
+same line as the else keyword, or on a line by itself if there is no
+else keyword. Example:
 
     if (a == 5) {
         printf("a was 5.\n");
+        do5stuff();
     } else if (a == 6) {
         printf("a was 6.\n");
+        do6stuff();
     } else {
         printf("a was something else entirely.\n");
     }
-- 
1.6.6.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]