From 7e8bdadb91010b83cea7e8bad7a4e7a2488a91f6 Mon Sep 17 00:00:00 2001 From: "Thiago Marcos P. Santos" Date: Wed, 21 Jun 2017 13:38:49 +0300 Subject: [core] Rename ThreadedObject to Thread Now that the old Thread class is gone, we can give ThreadedObject a better name. --- include/mbgl/storage/default_file_source.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/mbgl') 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 class ThreadedObject; +template 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 assetFileSource; - const std::unique_ptr> impl; + const std::unique_ptr> impl; std::mutex cachedBaseURLMutex; std::string cachedBaseURL = mbgl::util::API_BASE_URL; -- cgit v1.2.1