Changes between Version 8 and Version 9 of Coding Style Guidelines
- Timestamp:
- Aug 10, 2009, 6:11:19 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified Coding Style Guidelines
v8 v9 28 28 }}} 29 29 30 * Other braces including `for`, `while`, `do`, `switch` statements, as well as `class`, `struct` and `namespace` definitions — the open brace should go on the same line as the as the control structure. 30 * Other braces including `for`, `while`, `do`, `switch` statements, as well as `class`, `struct` and `namespace` definitions — the open brace should go on the same line as the as the control structure. One-line for/while/do loops should not get braces. 31 31 32 32 '''Right:'''