chore(thread): add missing include to SCritSect

This commit is contained in:
fallenoak 2020-11-30 23:42:14 -06:00
parent 800c1cc245
commit d98252a5e1
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D

View file

@ -1,6 +1,10 @@
#ifndef STORM_THREAD_S_CRIT_SECT_HPP
#define STORM_THREAD_S_CRIT_SECT_HPP
#if defined(WHOA_PLATFORM_WIN)
#include <windows.h>
#endif
#if defined(WHOA_PLATFORM_MAC) || defined(WHOA_PLATFORM_LINUX)
#include <pthread.h>
#endif