enum FormatStyle::BracketAlignmentStyle

Description

Different styles for aligning after open brackets.

Declared at: clang/include/clang/Format/Format.h:65

Enumerators

NameValueComment
BAS_Align0Align parameters on the open bracket, e.g.:
BAS_DontAlign1Don't align, instead use ``ContinuationIndentWidth``, e.g.:
BAS_AlwaysBreak2Always break after an open bracket, if the parameters don't fit on a single line, e.g.:
BAS_BlockIndent3Always 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.: