summaryrefslogtreecommitdiff
path: root/include/mbgl/storage
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2015-04-13 18:32:59 +0200
committerKonstantin Käfer <mail@kkaefer.com>2015-04-13 18:32:59 +0200
commit352ff64e06982bf215f0b818fa57c2fc0a7a8cd8 (patch)
tree999ee916f14af7947c0ab9949dee50f08b68f76d /include/mbgl/storage
parent452d12e6e653d61c2182f4464d4365f0b96c9739 (diff)
downloadqtlocation-mapboxgl-352ff64e06982bf215f0b818fa57c2fc0a7a8cd8.tar.gz
rename SQLiteCache::Thread to SQLiteCache::Impl
Diffstat (limited to 'include/mbgl/storage')
-rw-r--r--include/mbgl/storage/sqlite_cache.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mbgl/storage/sqlite_cache.hpp b/include/mbgl/storage/sqlite_cache.hpp
index db672b222b..b216f74d7b 100644
--- a/include/mbgl/storage/sqlite_cache.hpp
+++ b/include/mbgl/storage/sqlite_cache.hpp
@@ -21,8 +21,8 @@ public:
void put(const Resource &resource, std::shared_ptr<const Response> response, Hint hint) override;
private:
- class Thread;
- const std::unique_ptr<util::Thread<Thread>> thread;
+ class Impl;
+ const std::unique_ptr<util::Thread<Impl>> thread;
};
}