1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-13 16:45:20 +02:00

Fix missing include on AIX

This commit is contained in:
kwolekr
2015-10-17 01:16:17 -04:00
parent 765a834cd0
commit 6ba9d6545d

View File

@@ -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
/*