Skip to content
Snippets Groups Projects
Commit ae750739 authored by Zeno-'s avatar Zeno-
Browse files

Fix prepreprocessor error in thread.h (related to C++11 threads)

parent 8b1f8e99
No related branches found
No related tags found
No related merge requests found
......@@ -157,11 +157,11 @@ class Thread {
Atomic<bool> m_running;
Mutex m_mutex;
#if !USE_CPP11_THREADS
#ifndef USE_CPP11_THREADS
threadhandle_t m_thread_handle;
#if _WIN32
threadid_t m_thread_id;
#endif
# if _WIN32
threadid_t m_thread_id;
# endif
#endif
static ThreadStartFunc threadProc;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment