summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2016-06-12 14:15:16 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2016-06-13 23:32:06 +0300
commit4d75001e9af268cca015a46cc0465e39dd4eb971 (patch)
treea768076dca58e7de92d2f788f75cc891eefa7c91 /include
parent4161d197fdb59587b3ef5deac321605fc911a2ab (diff)
downloadqtlocation-mapboxgl-4d75001e9af268cca015a46cc0465e39dd4eb971.tar.gz
[tidy] Check modernize-use-override
Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-override.html
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/platform/default/glfw_view.hpp2
-rw-r--r--include/mbgl/platform/default/headless_view.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/mbgl/platform/default/glfw_view.hpp b/include/mbgl/platform/default/glfw_view.hpp
index b1204ce96d..83d00a24dd 100644
--- a/include/mbgl/platform/default/glfw_view.hpp
+++ b/include/mbgl/platform/default/glfw_view.hpp
@@ -14,7 +14,7 @@
class GLFWView : public mbgl::View {
public:
GLFWView(bool fullscreen = false, bool benchmark = false);
- ~GLFWView();
+ ~GLFWView() override;
float getPixelRatio() const override;
std::array<uint16_t, 2> getSize() const override;
diff --git a/include/mbgl/platform/default/headless_view.hpp b/include/mbgl/platform/default/headless_view.hpp
index d787eb1691..b2d0a6e5ac 100644
--- a/include/mbgl/platform/default/headless_view.hpp
+++ b/include/mbgl/platform/default/headless_view.hpp
@@ -31,7 +31,7 @@ class HeadlessView : public View {
public:
HeadlessView(float pixelRatio, uint16_t width = 256, uint16_t height = 256);
HeadlessView(std::shared_ptr<HeadlessDisplay> display, float pixelRatio, uint16_t width = 256, uint16_t height = 256);
- ~HeadlessView();
+ ~HeadlessView() override;
float getPixelRatio() const override;
std::array<uint16_t, 2> getSize() const override;