enum FormatStyle::SpacesInAnglesStyle
Description
Styles for adding spacing after `` < `` and before ``>` in template argument lists.
Declared at: clang/include/clang/Format/Format.h:3620
Enumerators
Name | Value | Comment |
---|---|---|
SIAS_Never | 0 | Remove spaces after `` < `` and before ``>``. |
SIAS_Always | 1 | Add spaces after `` < `` and before ``>``. |
SIAS_Leave | 2 | Keep a single space after `` < `` and before ``>`` if any spaces were present. Option ``Standard: Cpp03`` takes precedence. |