lkml.org 
[lkml]   [2007]   [May]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: condingstyle, was Re: utrace comments
Date
Eric W. Biederman <ebiederm@xmission.com> wrote:

> Not lining up with the code following the if statement is also
> a plus. Because it clearly delineates the conditions from the code.

But the condition doesn't line up with the code:

if (veryverylengthycondition1 &&
smallcond2 &&
(conditionnumber3a ||
condition3b)) {
this_is_some_code();
this_is_some_more_code();
}

Personally, for complicated conditions like this, I prefer:

if (veryverylengthycondition1 &&
smallcond2 &&
(conditionnumber3a ||
condition3b)
) {
this_is_some_code();
this_is_some_more_code();
}

But that seems to offend Andrew for some reason (or was it Christoph? or
both?).

David
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2007-05-02 11:37    [W:1.750 / U:0.020 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site