xboard-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [XBoard-devel] coding style


From: h.g. muller
Subject: Re: [XBoard-devel] coding style
Date: Tue, 03 Jan 2012 23:21:18 +0100


Guess this is a matter of taste... to me having those extra lines makes
it a lot more readable than the other version... mostly because I find
it easier to see where the block starts and ends by having the {} in the
same column...

Well, that can be achieved without uing extra lines by writing the openig brace
on the same line as the firststatement (and closing braces on the same line as
a following else). Like

if(A)
{   x = 1;
    y = 2;
} else
{   x = 2;
    y = 1;
}

This is actually the style I used in my own programs.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]