enum FormatStyle::BracketAlignmentStyle
Description
Different styles for aligning after open brackets.
Declared at: clang/include/clang/Format/Format.h:65
Enumerators
Name | Value | Comment |
---|---|---|
BAS_Align | 0 | Align parameters on the open bracket, e.g.: |
BAS_DontAlign | 1 | Don't align, instead use ``ContinuationIndentWidth``, e.g.: |
BAS_AlwaysBreak | 2 | Always break after an open bracket, if the parameters don't fit on a single line, e.g.: |
BAS_BlockIndent | 3 | Always break after an open bracket, if the parameters don't fit on a single line. Closing brackets will be placed on a new line. E.g.: |