diff options
Diffstat (limited to 'core/os/thread.h')
-rw-r--r-- | core/os/thread.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/os/thread.h b/core/os/thread.h index f761d4ca43..b87ec84313 100644 --- a/core/os/thread.h +++ b/core/os/thread.h @@ -31,15 +31,14 @@ #ifndef THREAD_H #define THREAD_H +#include "core/string/ustring.h" #include "core/typedefs.h" -#include "core/ustring.h" typedef void (*ThreadCreateCallback)(void *p_userdata); class Thread { public: enum Priority { - PRIORITY_LOW, PRIORITY_NORMAL, PRIORITY_HIGH |