On Sunday 13 December 2009, Carsten Breuer wrote:
> What I dislike most:
> 
> Missing brackets:
> 
> if (FOO_BAR)
>     do_something
> 
> It should be
> 
> if (FOO_BAR)
> {
>     do:something
> }

For the record:  I dislike the superfluous brackets.

As Lennart noted, wasting vertical space is not good.
That's a case of taking 100% more lines than needed...

There have certainly been cases where such wastage has
hidden bugs that would otherwise be visible just by
reading one screen's worth of code ... because it's
not as apparent what's going on when you need to flip
back and forth between two screens.


_______________________________________________
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to