Skip to content

Commit 6ba9d65

Browse files
committedOct 17, 2015
Fix missing include on AIX
1 parent 765a834 commit 6ba9d65

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

Diff for: ‎src/threading/thread.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ DEALINGS IN THE SOFTWARE.
3232

3333
#include <string>
3434
#if USE_CPP11_THREADS
35-
#include <thread>
35+
#include <thread> // for std::thread
36+
#endif
37+
#ifdef _AIX
38+
#include <sys/thread.h> // for tid_t
3639
#endif
3740

3841
/*

0 commit comments

Comments
 (0)
Please sign in to comment.