summaryrefslogtreecommitdiff
path: root/src/mbgl/storage/local_file_source.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/storage/local_file_source.hpp')
-rw-r--r--src/mbgl/storage/local_file_source.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mbgl/storage/local_file_source.hpp b/src/mbgl/storage/local_file_source.hpp
index 43319bc06e..1e785379c0 100644
--- a/src/mbgl/storage/local_file_source.hpp
+++ b/src/mbgl/storage/local_file_source.hpp
@@ -5,7 +5,7 @@
namespace mbgl {
namespace util {
-template <typename T> class Thread;
+template <typename T> class ThreadedObject;
} // namespace util
class LocalFileSource : public FileSource {
@@ -19,7 +19,8 @@ public:
private:
class Impl;
- std::unique_ptr<util::Thread<Impl>> thread;
+
+ std::unique_ptr<util::ThreadedObject<Impl>> impl;
};
} // namespace mbgl