From f24582ea2b9eb4b0622e31d0e1ea90ffcc10f60d Mon Sep 17 00:00:00 2001 From: Dzmitry Neviadomski Date: Fri, 24 May 2024 18:31:21 +0300 Subject: [PATCH] Fix incorrect value for SortIncludes in .clang-format (#6784) See https://clang.llvm.org/docs/ClangFormatStyleOptions.html#sortincludes Signed-off-by: Dzmitry Neviadomski --- .clang-format | 2 +- third-party/.clang-format | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.clang-format b/.clang-format index cf9fa7365..0b171d76e 100644 --- a/.clang-format +++ b/.clang-format @@ -32,7 +32,7 @@ PenaltyBreakBeforeFirstCallParameter: 0 PenaltyReturnTypeOnItsOwnLine: 1000 PointerAlignment: Left ReflowComments: false -SortIncludes: false +SortIncludes: Never SpaceAfterCStyleCast: false SpacesBeforeTrailingComments: 1 SpacesInAngles: false diff --git a/third-party/.clang-format b/third-party/.clang-format index e871ed18b..a5121ff07 100644 --- a/third-party/.clang-format +++ b/third-party/.clang-format @@ -1,3 +1,3 @@ --- DisableFormat: true -SortIncludes: false +SortIncludes: Never