diff options
author | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2020-02-26 17:47:03 +0200 |
---|---|---|
committer | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2020-02-26 22:31:59 +0200 |
commit | ba4f5efa09b985f0bab99a53dc9ac27dd6fb94ea (patch) | |
tree | 48354dd1d9d2d639aa6374bf835c98f13c9ef2eb /include/mbgl | |
parent | 25d8eab9737111ab1f2af369125705f241543e51 (diff) | |
download | qtlocation-mapboxgl-ba4f5efa09b985f0bab99a53dc9ac27dd6fb94ea.tar.gz |
[core] OnlineFileSource is never accessed directly
Diffstat (limited to 'include/mbgl')
-rw-r--r-- | include/mbgl/storage/online_file_source.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/storage/online_file_source.hpp b/include/mbgl/storage/online_file_source.hpp index bb7adbb5d5..d830450f96 100644 --- a/include/mbgl/storage/online_file_source.hpp +++ b/include/mbgl/storage/online_file_source.hpp @@ -10,6 +10,7 @@ public: OnlineFileSource(); ~OnlineFileSource() override; +private: // FileSource overrides std::unique_ptr<AsyncRequest> request(const Resource&, Callback) override; bool canRequest(const Resource&) const override; @@ -19,7 +20,6 @@ public: mapbox::base::Value getProperty(const std::string&) const override; void setResourceTransform(ResourceTransform) override; -private: class Impl; const std::unique_ptr<Impl> impl; }; |