add exception for uncuddling brackets

1_1_stable
Mike Frysinger 2006-02-24 01:18:24 +00:00
parent 6b6edf959d
commit 0612b5fa68
1 changed files with 9 additions and 0 deletions

View File

@ -126,6 +126,15 @@ between it and the opening control block statement. Examples:
do {
Exceptions:
- if you have long logic statements that need to be wrapped, then uncuddling
the bracket to improve readability is allowed:
if (some_really_long_checks && some_other_really_long_checks \
&& some_more_really_long_checks)
{
do_foo_now;
Spacing around Parentheses
~~~~~~~~~~~~~~~~~~~~~~~~~~