IndentPPDirectives
IndentPPDirectives (PPDirectiveIndentStyle
)¶
Info
clang-format 6
要使用的预处理器指令缩进样式。
可能的值:
PPDIS_None
: 不缩进任何指令。
#if FOO
#if BAR
#include <foo>
#endif
#endif
PPDIS_AfterHash
: 缩进#
后的指令。
#if FOO
# if BAR
# include <foo>
# endif
#endif
PPDIS_BeforeHash
: 在#
前缩进指令。
#if FOO
#if BAR
#include <foo>
#endif
#endif
最后更新:
2022-10-31