Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@maps.me>2015-09-17 23:48:25 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:06:19 +0300
commit08ba700e9e4a7da409b4620403202873b4ae7402 (patch)
tree6ba00dfdce34996798010217e2750ba28d0b48cc /render
parent7d57ff62a8764f5f33be06a803f893ff3ccaf879 (diff)
Compiler warning fixes.
Diffstat (limited to 'render')
-rw-r--r--render/cpu_drawer.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/cpu_drawer.hpp b/render/cpu_drawer.hpp
index f55c7a087c..34fb5be0fc 100644
--- a/render/cpu_drawer.hpp
+++ b/render/cpu_drawer.hpp
@@ -32,7 +32,7 @@ public:
void DrawSearchArrow(double azimut);
void EndFrame(FrameImage & image);
- graphics::GlyphCache * GetGlyphCache() { return m_renderer->GetGlyphCache(); }
+ graphics::GlyphCache * GetGlyphCache() override { return m_renderer->GetGlyphCache(); }
protected:
void DrawSymbol(m2::PointD const & pt, graphics::EPosition pos, di::DrawRule const & rule) override;