[libcxx-commits] [libcxx] Result of applying clang-format-18 to each header and source file (PR #79214)

via libcxx-commits libcxx-commits at lists.llvm.org
Tue Jan 23 13:55:03 PST 2024


================
@@ -11,9 +11,9 @@
 
 #define NOMINMAX
 #define WIN32_LEAN_AND_MEAN
-#include <windows.h>
-#include <process.h>
 #include <fibersapi.h>
+#include <process.h>
+#include <windows.h>
----------------
pkasting wrote:

In Chromium we can generally convince clang-format to leave blocks in order relative to each other by inserting a newline:
```
#include <windows.h>

#include other windows headers here
```
Does that work here?

https://github.com/llvm/llvm-project/pull/79214


More information about the libcxx-commits mailing list