summaryrefslogtreecommitdiff
path: root/src/threading/event.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/threading/event.cpp')
-rw-r--r--src/threading/event.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/threading/event.cpp b/src/threading/event.cpp
index 1c458bf1d..c3c2ca029 100644
--- a/src/threading/event.cpp
+++ b/src/threading/event.cpp
@@ -25,14 +25,6 @@ DEALINGS IN THE SOFTWARE.
#include "threading/event.h"
-#if defined(_WIN32)
- #ifndef WIN32_LEAN_AND_MEAN
- #define WIN32_LEAN_AND_MEAN
- #endif
- #include <windows.h>
-#endif
-
-
#if __cplusplus < 201103L
Event::Event()
{
@@ -92,4 +84,3 @@ void Event::signal()
pthread_mutex_unlock(&mutex);
#endif
}
-