From b030ab5b8b2875ea44b6ccc14969aafca5d7cfa2 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Wed, 7 Jul 2021 20:48:38 +0200 Subject: [PATCH] (Windows) Fixed a MinGW compiler warning. --- es-core/src/Platform.h | 1 + 1 file changed, 1 insertion(+) diff --git a/es-core/src/Platform.h b/es-core/src/Platform.h index aca84afc7..c32c82c3f 100644 --- a/es-core/src/Platform.h +++ b/es-core/src/Platform.h @@ -13,6 +13,7 @@ #if defined(_WIN64) #include +// This order is required as MinGW complains if windows.h is included before winsock2.h. #include #endif