Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix missing include on AIX
  • Loading branch information
kwolekr committed Oct 17, 2015
1 parent 765a834 commit 6ba9d65
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/threading/thread.h
Expand Up @@ -32,7 +32,10 @@ DEALINGS IN THE SOFTWARE.

#include <string>
#if USE_CPP11_THREADS
#include <thread>
#include <thread> // for std::thread
#endif
#ifdef _AIX
#include <sys/thread.h> // for tid_t
#endif

/*
Expand Down

0 comments on commit 6ba9d65

Please sign in to comment.