Browse Source

does this make windows happy?

Grant Limberg 1 month ago
parent
commit
d72b98b434
1 changed files with 3 additions and 1 deletions
  1. 3 1
      osdep/Http.hpp

+ 3 - 1
osdep/Http.hpp

@@ -19,9 +19,11 @@
 #include <string>
 
 #if defined(_WIN32) || defined(_WIN64)
-#include <windows.h>
+// clang-format off
 #include <winsock2.h>
 #include <ws2tcpip.h>
+#include <windows.h>
+// clang-format on
 #else
 #include <arpa/inet.h>
 #include <netinet/in.h>