What's Changed
Trailing comma is placed on new line if last enum value is followed by a comment #1429
// input
enum MyEnum
{
First,
Second // the second value
}
// 0.30.5
enum MyEnum
{
First,
Second // the second value
,
}
// 0.30.6
enum MyEnum
{
First,
Second, // the second value
}
Full Changelog: 0.30.5...0.30.6