From 703d2bc0cd674bad280592982898607002918052 Mon Sep 17 00:00:00 2001 From: drfrag666 Date: Mon, 18 Jun 2018 13:39:23 +0200 Subject: [PATCH] - Fixed missing include due to non conformant preprocessor in VS. --- src/d_main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/d_main.cpp b/src/d_main.cpp index 668dcf1ce..6542b950a 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -28,6 +28,10 @@ // HEADER FILES ------------------------------------------------------------ +#ifdef _WIN32 +#include +#endif + #ifdef HAVE_FPU_CONTROL #include #endif