Skip to content

Commit

Permalink
Fix prepreprocessor error in thread.h (related to C++11 threads)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeno- committed Apr 30, 2016
1 parent 8b1f8e9 commit ae75073
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/threading/thread.h
Expand Up @@ -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;

This comment has been minimized.

Copy link
@est31

est31 Apr 30, 2016

Contributor

tabs!

This comment has been minimized.

Copy link
@Zeno-

Zeno- Apr 30, 2016

Author Contributor

Yes, I saw that after I pushed.

# endif
#endif

static ThreadStartFunc threadProc;
Expand Down

0 comments on commit ae75073

Please sign in to comment.