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 <deathbaba@gmail.com>2011-10-21 19:36:18 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:26:30 +0300
commit7e9e6a25949d9b4321b752fea89f88c3207f59de (patch)
tree9726278a6d305f4fe1baee955913f83b2dfeecd2 /platform/video_timer.hpp
parent05390456dad59c986218919ec459731830f6c21b (diff)
Added missing virtual destructor
Diffstat (limited to 'platform/video_timer.hpp')
-rw-r--r--platform/video_timer.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/video_timer.hpp b/platform/video_timer.hpp
index a93bfee31a..d19cf14d13 100644
--- a/platform/video_timer.hpp
+++ b/platform/video_timer.hpp
@@ -14,8 +14,8 @@ protected:
TFrameFn m_frameFn;
public:
-
VideoTimer(TFrameFn fn);
+ virtual ~VideoTimer() {}
virtual void start() = 0;
virtual void stop() = 0;