summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-06-25 15:20:37 -0300
committerJuan Linietsky <reduzio@gmail.com>2016-06-25 15:20:37 -0300
commit620da09b8714b446b2fc2fb0a9d897ce502f0377 (patch)
tree9e5cc24fad34844088af64e4593f9cade706bd3b /drivers
parent8dac3bf3b10406d05c4d520e81082e490e3b76ff (diff)
try to fix windows build
Diffstat (limited to 'drivers')
-rw-r--r--drivers/windows/thread_windows.cpp2
-rw-r--r--drivers/windows/thread_windows.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/windows/thread_windows.cpp b/drivers/windows/thread_windows.cpp
index 434f2e8fda..884575e81e 100644
--- a/drivers/windows/thread_windows.cpp
+++ b/drivers/windows/thread_windows.cpp
@@ -31,7 +31,7 @@
#if defined(WINDOWS_ENABLED) && !defined(WINRT_ENABLED)
#include "os/memory.h"
-#include "script_language.h"
+
Thread::ID ThreadWindows::get_ID() const {
diff --git a/drivers/windows/thread_windows.h b/drivers/windows/thread_windows.h
index b051bfe370..1c90504dde 100644
--- a/drivers/windows/thread_windows.h
+++ b/drivers/windows/thread_windows.h
@@ -36,6 +36,7 @@
#ifdef WINDOWS_ENABLED
#include "os/thread.h"
+#include "script_language.h"
#include <windows.h>
class ThreadWindows : public Thread {