Before this change enums were formatted incorrectly for the Microsoft style.
[C++ Example]
enum {
one,
two
} three, four;[Incorrectly Formatted]
enum
{
one,
two
} three,
four;[Correct Format with Patch]
enum
{
one,
two
} three, four;
This and the line below are probably applying to more than enums. Any suggestions on a better fix?