From ff0010080bbab16ec7b12b7f71e958d1e4f6f94b Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Sat, 13 May 2023 20:23:19 +0200 Subject: Windows: Use winsock2.h instead of sys/time.h when using MSVC --- include/plist/Date.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include') diff --git a/include/plist/Date.h b/include/plist/Date.h index 3cfb7d1..5113cf3 100644 --- a/include/plist/Date.h +++ b/include/plist/Date.h @@ -24,7 +24,11 @@ #include #include +#ifdef _MSC_VER +#include +#else #include +#endif namespace PList { -- cgit v1.1-32-gdbae