aboutsummaryrefslogtreecommitdiff
path: root/CodingStyle
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-04-19 14:37:56 -0700
committerBen Pfaff <blp@nicira.com>2010-04-20 11:01:44 -0700
commitede818437a16d1cf50c5e8f285593f85cd6f2513 (patch)
treed53f88ffe8b4cd7ecb9c04f61670fbfdde9b9b6b /CodingStyle
parent8872051980d541cd7b88c624ac3a08e85171df40 (diff)
CodingStyle: Drop advice about breaking lines before binary operators.
I like the style that was prescribed here--I find it slightly easier to read--but everyone else who submits code seems to prefer breaking lines after binary operators instead. No point in fighting the tide.
Diffstat (limited to 'CodingStyle')
-rw-r--r--CodingStyle9
1 files changed, 2 insertions, 7 deletions
diff --git a/CodingStyle b/CodingStyle
index f4765ad8..bbb492e3 100644
--- a/CodingStyle
+++ b/CodingStyle
@@ -412,13 +412,8 @@ Exception 1: Put a space after (but not before) the "sizeof" keyword.
Exception 2: Put a space between the () used in a cast and the
expression whose type is cast: (void *) 0.
- Break long lines before binary operators and the ternary operators ?
-and :, rather than after them, e.g.
-
- if (first_long_condition() || second_long_condition()
- || third_long_condition())
-
-and
+ Break long lines before the ternary operators ? and :, rather than
+after them, e.g.
return (out_port != VIGP_CONTROL_PATH
? alpheus_output_port(dp, skb, out_port)