From d98252a5e1ab3baa022930a7b40fdcfb1d6963e7 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Mon, 30 Nov 2020 23:42:14 -0600 Subject: [PATCH] chore(thread): add missing include to SCritSect --- storm/thread/SCritSect.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/storm/thread/SCritSect.hpp b/storm/thread/SCritSect.hpp index 394b514..4dd6226 100644 --- a/storm/thread/SCritSect.hpp +++ b/storm/thread/SCritSect.hpp @@ -1,6 +1,10 @@ #ifndef STORM_THREAD_S_CRIT_SECT_HPP #define STORM_THREAD_S_CRIT_SECT_HPP +#if defined(WHOA_PLATFORM_WIN) +#include +#endif + #if defined(WHOA_PLATFORM_MAC) || defined(WHOA_PLATFORM_LINUX) #include #endif