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

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Tue Jan 23 13:53:39 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>
----------------
ldionne wrote:

These headers must not be reordered, otherwise we'll break the Windows build. I think I broke it when I landed the original reformatting PR. I guess we should turn off clang-format around this block.

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


More information about the libcxx-commits mailing list