From c77e2b3fd8d5ae66de9679c59634e97aa5fdd998 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Tue, 10 Aug 2021 16:12:46 +0200 Subject: [PATCH] possible fix for windows build 2 --- include/Compat.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/Compat.h b/include/Compat.h index a773b2e..4fd2444 100644 --- a/include/Compat.h +++ b/include/Compat.h @@ -21,8 +21,7 @@ inline void CloseSocketProper(int TheSocket) { // ======================= WIN32 ======================= #ifdef WIN32 -#include -#include +#include inline void CloseSocketProper(SOCKET TheSocket) { shutdown(TheSocket, SD_BOTH); closesocket(TheSocket);