diff options
author | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2017-06-21 13:38:49 +0300 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2017-06-21 14:30:09 +0300 |
commit | 7e8bdadb91010b83cea7e8bad7a4e7a2488a91f6 (patch) | |
tree | e2ed9939f3a1e60fde59536a51336e70749311f7 /include | |
parent | 1427628c56d336a21c93ef0a1c57fbfabd98dc5e (diff) | |
download | qtlocation-mapboxgl-7e8bdadb91010b83cea7e8bad7a4e7a2488a91f6.tar.gz |
[core] Rename ThreadedObject to Thread
Now that the old Thread class is gone, we can give ThreadedObject
a better name.
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/storage/default_file_source.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mbgl/storage/default_file_source.hpp b/include/mbgl/storage/default_file_source.hpp index df4ab4ab34..556a8df586 100644 --- a/include/mbgl/storage/default_file_source.hpp +++ b/include/mbgl/storage/default_file_source.hpp @@ -10,7 +10,7 @@ namespace mbgl { namespace util { -template <typename T> class ThreadedObject; +template <typename T> class Thread; } // namespace util class DefaultFileSource : public FileSource { @@ -143,7 +143,7 @@ public: private: // Shared so destruction is done on this thread const std::shared_ptr<FileSource> assetFileSource; - const std::unique_ptr<util::ThreadedObject<Impl>> impl; + const std::unique_ptr<util::Thread<Impl>> impl; std::mutex cachedBaseURLMutex; std::string cachedBaseURL = mbgl::util::API_BASE_URL; |