diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2015-05-01 18:24:58 -0400 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2015-05-01 18:24:58 -0400 |
commit | b713930c7f08b511f1cf6dbd79e803840de71889 (patch) | |
tree | 5546ea78b741ae10c332b869fc3a4f38ae7b50b6 /include | |
parent | 24695f6c0274cac8ae17df3765e0cc54c5668047 (diff) | |
parent | 4c8f716f20bd95c9821b20a6c30ab7af35bf1497 (diff) | |
download | qtlocation-mapboxgl-b713930c7f08b511f1cf6dbd79e803840de71889.tar.gz |
Merge branch 'uv_leak'
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/storage/sqlite_cache.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/mbgl/storage/sqlite_cache.hpp b/include/mbgl/storage/sqlite_cache.hpp index b216f74d7b..fd67d48bb5 100644 --- a/include/mbgl/storage/sqlite_cache.hpp +++ b/include/mbgl/storage/sqlite_cache.hpp @@ -20,8 +20,9 @@ public: void get(const Resource &resource, Callback callback) override; void put(const Resource &resource, std::shared_ptr<const Response> response, Hint hint) override; -private: class Impl; + +private: const std::unique_ptr<util::Thread<Impl>> thread; }; |