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;
? are you removing something?