diff options
Diffstat (limited to '')
-rw-r--r-- | source/cSemaphore.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/cSemaphore.h b/source/cSemaphore.h index 86e473d11..42966b410 100644 --- a/source/cSemaphore.h +++ b/source/cSemaphore.h @@ -9,9 +9,9 @@ public: void Wait();
void Signal();
private:
- void* m_Handle; // HANDLE pointer - -#ifndef _WIN32 - bool m_bNamed; + void* m_Handle; // HANDLE pointer
+
+#ifndef _WIN32
+ bool m_bNamed;
#endif
-}; +};
|