I would like to have an option in GC to remove
unnecessary braces
(especially when there is only a simple statement
inside the braces).
An example:
BEFORE:
if (x < 10)
{
printf("Small x\n");
}
else
{
printf("Big x\n");
}
AFTER:
if (x < 10)
printf("Small x\n");
else
printf("Big x\n");
I know that this is a bit beyond beautifying, but sure
it would
be very nice...
GC.uranium@neverbox.com