From 0003f9a857ca720a3ade30dfc2039a231434cf74 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck Date: Mon, 8 Apr 2024 18:19:23 -0500 Subject: [PATCH] fix: SortIncludes: Never; Standard: Cpp20 --- .clang-format | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 5c443be69c..b1e62de66a 100644 --- a/.clang-format +++ b/.clang-format @@ -3,7 +3,7 @@ BasedOnStyle: LLVM BreakConstructorInitializersBeforeComma: true ConstructorInitializerAllOnOneLineOrOnePerLine: true Cpp11BracedListStyle: true -Standard: Cpp11 +Standard: Cpp20 #SpaceBeforeParens: ControlStatements SpaceAfterControlStatementKeyword: true PointerBindsToType: true @@ -12,4 +12,5 @@ UseTab: Never ColumnLimit: 100 NamespaceIndentation: Inner AlignConsecutiveAssignments: true +SortIncludes: Never ...