X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=CodingStyle;h=bbb492e3247f4d500cb29ce6a63c0a5d28f28d48;hb=62471e59fccf3c48d75becfa12690e23bb683407;hp=f4765ad8dc36e4e926830619c704f4c4a7897652;hpb=f1acd62b54376a425a975f9af501c4c8c5689b39;p=openvswitch 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)