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
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@maps.me>2015-06-26 18:55:43 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:21 +0300
commit7e865a6e5812b34c59630358264fc997414f0e05 (patch)
treea43317034aa1663e00a1d44f4caa7ceca9871b1e /map/bookmark.hpp
parentc46b1cbbe9d05fadf4e7a0df69e6b69313731e66 (diff)
Compilation warning fix.
Diffstat (limited to 'map/bookmark.hpp')
-rw-r--r--map/bookmark.hpp6
1 files 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<UserMarkCopy> 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<anim::Task> CreateAnimTask(Framework & fm);
};