enum FormatStyle::BreakBeforeConceptDeclarationsStyle
Description
Different ways to break before concept declarations.
Declared at: clang/include/clang/Format/Format.h:1644
Enumerators
Name | Value | Comment |
---|---|---|
BBCDS_Never | 0 | Keep the template declaration line together with ``concept``. |
BBCDS_Allowed | 1 | Breaking between template declaration and ``concept`` is allowed. The actual behavior depends on the content and line breaking rules and penalities. |
BBCDS_Always | 2 | Always break before ``concept``, putting it in the line after the template declaration. |