diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-02-17 12:34:51 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-02-17 13:31:39 +0100 |
commit | 70e08d1325b2cdd0e9c16a193cc6ed10d2d21617 (patch) | |
tree | a6b409a6efed58280c5f9af71ff7fd517873ad4e /src/mutex.h | |
parent | baed7f32c7608532012a90804629b54e2d8c6f81 (diff) |
Win32 build fixes.
Diffstat (limited to 'src/mutex.h')
-rw-r--r-- | src/mutex.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mutex.h b/src/mutex.h index 7e31296..067a4db 100644 --- a/src/mutex.h +++ b/src/mutex.h @@ -27,6 +27,8 @@ */ #pragma once +#include "platform.h" + struct mutex_private_t; class Mutex { @@ -42,7 +44,7 @@ private: struct mutex_private_t* prv; }; -#ifdef WIN32 +#if DG_PLATFORM == DG_PLATFORM_WINDOWS // Hack: mingw doesn't have std::mutex namespace std { class mutex : public Mutex {}; |