From 7e865a6e5812b34c59630358264fc997414f0e05 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Fri, 26 Jun 2015 18:55:43 +0300 Subject: [PATCH] Compilation warning fix. --- map/bookmark.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/map/bookmark.hpp b/map/bookmark.hpp index fd9dfce141..1ef6bce631 100644 --- a/map/bookmark.hpp +++ b/map/bookmark.hpp @@ -111,9 +111,9 @@ public: unique_ptr Copy() const override; - virtual graphics::DisplayList * GetDisplayList(UserMarkDLCache * cache) const; - virtual double GetAnimScaleFactor() const; - virtual m2::PointD const & GetPixelOffset() const; + virtual graphics::DisplayList * GetDisplayList(UserMarkDLCache * cache) const override; + virtual double GetAnimScaleFactor() const override; + virtual m2::PointD const & GetPixelOffset() const override; shared_ptr CreateAnimTask(Framework & fm); };