From 93fa1ec61867b7698578215f5107e5259eca1afa Mon Sep 17 00:00:00 2001 From: zvon Date: Wed, 15 Apr 2020 11:45:10 +0200 Subject: [PATCH] Include sorting causes problems on windows For some reason you need to include before some other includes, because recursive include isn't a thing on windows I guess --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index b790a1c..8dad6e1 100644 --- a/.clang-format +++ b/.clang-format @@ -8,7 +8,7 @@ Cpp11BracedListStyle: 'false' IndentWidth: '4' Language: Cpp PointerAlignment: Right -SortIncludes: 'true' +SortIncludes: 'false' SpaceBeforeAssignmentOperators: 'true' SpaceBeforeParens: ControlStatements SpaceInEmptyParentheses: 'false'