summaryrefslogtreecommitdiff
path: root/platform/qt/src/thread_local.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/qt/src/thread_local.cpp')
-rw-r--r--platform/qt/src/thread_local.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/qt/src/thread_local.cpp b/platform/qt/src/thread_local.cpp
index 467bfb0d05..4191195a86 100644
--- a/platform/qt/src/thread_local.cpp
+++ b/platform/qt/src/thread_local.cpp
@@ -1,7 +1,7 @@
#include <mbgl/util/thread_local.hpp>
#include <mbgl/actor/scheduler.hpp>
-#include <mbgl/renderer/backend_scope.hpp>
+#include <mbgl/gfx/backend_scope.hpp>
#include <array>
#include <cassert>
@@ -42,7 +42,7 @@ void ThreadLocal<T>::set(T* ptr) {
}
template class ThreadLocal<Scheduler>;
-template class ThreadLocal<BackendScope>;
+template class ThreadLocal<gfx::BackendScope>;
template class ThreadLocal<int>; // For unit tests
} // namespace util