summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <thiago@mapbox.com>2015-11-05 19:22:51 +0200
committerThiago Marcos P. Santos <thiago@mapbox.com>2015-11-05 19:26:05 +0200
commitbe16c37e651a33a1ae07aab582a3e07f98a5ddfc (patch)
treef2080391ee15fa07c7d3f4c5ed1eb98708c3d091 /src
parent1fcc606d271c0a643f788c5d79ff763528cfc6b5 (diff)
downloadqtlocation-mapboxgl-be16c37e651a33a1ae07aab582a3e07f98a5ddfc.tar.gz
[core] Added missing virtual destructor to HTTPContextBase
Diffstat (limited to 'src')
-rw-r--r--src/mbgl/storage/http_context_base.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mbgl/storage/http_context_base.hpp b/src/mbgl/storage/http_context_base.hpp
index fd88d7dba9..fd6e444ee3 100644
--- a/src/mbgl/storage/http_context_base.hpp
+++ b/src/mbgl/storage/http_context_base.hpp
@@ -14,6 +14,7 @@ class HTTPContextBase {
public:
static std::unique_ptr<HTTPContextBase> createContext(uv_loop_t*);
+ virtual ~HTTPContextBase() = default;
virtual HTTPRequestBase* createRequest(const Resource&,
RequestBase::Callback,
uv_loop_t*,