Whether to add or remove braces around the body of control statements.
if (cond) x++;
if (cond) { x++; }
if (cond) { x++; y++; }