enum FormatStyle::BreakTemplateDeclarationsStyle
Description
Different ways to break after the template declaration.
Declared at: clang/include/clang/Format/Format.h:753
Enumerators
Name | Value | Comment |
---|---|---|
BTDS_No | 0 | Do not force break before declaration. ``PenaltyBreakTemplateDeclaration`` is taken into account. |
BTDS_MultiLine | 1 | Force break after template declaration only when the following declaration spans multiple lines. |
BTDS_Yes | 2 | Always break after template declaration. |