Comment out clang-format directives that depend on clang 12

This commit is contained in:
Alex Richardson 2021-03-20 17:24:44 +00:00
parent 3a8884a54a
commit dff9f5efce

View file

@ -1,5 +1,5 @@
BasedOnStyle: LLVM BasedOnStyle: LLVM
AlignConsecutiveMacros: AcrossEmptyLinesAndComments # TODO-clang-12: AlignConsecutiveMacros: AcrossEmptyLinesAndComments
AllowAllArgumentsOnNextLine: false AllowAllArgumentsOnNextLine: false
AllowAllConstructorInitializersOnNextLine: false AllowAllConstructorInitializersOnNextLine: false
AllowAllParametersOfDeclarationOnNextLine: false AllowAllParametersOfDeclarationOnNextLine: false
@ -26,8 +26,8 @@ PointerAlignment: Right
ReflowComments: false ReflowComments: false
# Not sure about SpaceAfterCStyleCast, some files use it others don't # Not sure about SpaceAfterCStyleCast, some files use it others don't
SpaceAfterCStyleCast: true SpaceAfterCStyleCast: true
SortIncludes: Never # TODO-clang-12: SortIncludes: Never
SpaceBeforeParens: ControlStatementsExceptForEachMacros SpaceBeforeParens: ControlStatementsExceptForEachMacros
SpaceAroundPointerQualifiers: Before # TODO-clang-12: SpaceAroundPointerQualifiers: Before
TabWidth: 8 TabWidth: 8
UseTab: ForContinuationAndIndentation UseTab: ForContinuationAndIndentation