diff options
author | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2020-03-27 18:30:35 +0200 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2020-04-17 13:36:50 +0300 |
commit | 63ef5298cd70ce720a6c1289435b5043517b6f30 (patch) | |
tree | d22894e13fd2a22625bf8588bff57e42380d42ad /src/mbgl/gfx | |
parent | 47b8fc703b90404b56ba51a5013cf2e42674992d (diff) | |
download | qtlocation-mapboxgl-63ef5298cd70ce720a6c1289435b5043517b6f30.tar.gz |
[core] Fix modernize-use-override errors in header files
As reported by clang-tidy-8.
Diffstat (limited to 'src/mbgl/gfx')
-rw-r--r-- | src/mbgl/gfx/offscreen_texture.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/gfx/offscreen_texture.hpp b/src/mbgl/gfx/offscreen_texture.hpp index 5690ff7625..d4bf5149fd 100644 --- a/src/mbgl/gfx/offscreen_texture.hpp +++ b/src/mbgl/gfx/offscreen_texture.hpp @@ -15,7 +15,7 @@ protected: } public: - virtual ~OffscreenTexture() = default; + ~OffscreenTexture() override = default; virtual bool isRenderable() = 0; |