]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/semaphore.h
Win32 compilation fixes
[libs/core.git] / source / core / semaphore.h
index 164131acaaa8c19d5f94b9139be12fe9e05117a6..a7cdff7371d4f301468ff42da669cea6daa5db26 100644 (file)
@@ -32,7 +32,9 @@ public:
        ~Semaphore()       { CloseHandle(sem); }
 #endif
 private:
+#ifndef WIN32
        Mutex mutex;
+#endif
        SemaphoreHandle sem;
 };