chore(thread): add missing include to SSyncObject

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

View file

@ -3,6 +3,10 @@
#include <cstdint>
#if defined(WHOA_PLATFORM_WIN)
#include <windows.h>
#endif
#if defined(WHOA_PLATFORM_MAC) || defined(WHOA_PLATFORM_LINUX)
#include <pthread.h>
#endif