enum FormatStyle::BreakConstructorInitializersStyle
Description
Different ways to break initializers.
Declared at: clang/include/clang/Format/Format.h:1683
Enumerators
Name | Value | Comment |
---|---|---|
BCIS_BeforeColon | 0 | Break constructor initializers before the colon and after the commas. |
BCIS_BeforeComma | 1 | Break constructor initializers before the colon and commas, and align the commas with the colon. |
BCIS_AfterColon | 2 | Break constructor initializers after the colon and commas. |