enum FormatStyle::SpaceAroundPointerQualifiersStyle
Description
Different ways to put a space before opening parentheses.
Declared at: clang/include/clang/Format/Format.h:3308
Enumerators
Name | Value | Comment |
---|---|---|
SAPQ_Default | 0 | Don't ensure spaces around pointer qualifiers and use PointerAlignment instead. |
SAPQ_Before | 1 | Ensure that there is a space before pointer qualifiers. |
SAPQ_After | 2 | Ensure that there is a space after pointer qualifiers. |
SAPQ_Both | 3 | Ensure that there is a space both before and after pointer qualifiers. |