Space after comma in enumerations

EditorConfig key: cpp-space-after-comma-in-enum

Space after comma in enumerations

cpp-space-after-comma-in-enum

Default value:

true

Possible values:

  • true
  • false

Examples

true
enum E { A, B, C };
false
enum E { A,B,C };