We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b5a002 commit cc5ac91Copy full SHA for cc5ac91
2 files changed
.clang-format
@@ -14,7 +14,7 @@ AlignConsecutiveBitFields:
14
AlignConsecutiveDeclarations: None
15
AlignEscapedNewlines: Right
16
AlignOperands: Align
17
-SortIncludes: true
+SortIncludes: false # don't, Windows headers need a fixed include order
18
InsertBraces: true
19
AlignTrailingComments: true
20
AllowAllArgumentsOnNextLine: true
src/engine_lib/src/io/paths.c
@@ -9,9 +9,9 @@
9
10
#if defined(WIN32)
11
#define NOMINMAX
12
+#include <Windows.h>
13
#include <KnownFolders.h>
#include <Shlobj.h>
-#include <Windows.h>
#endif
static char cached_path_to_config_dir[2048] = {0};
0 commit comments