From 7e9e6a25949d9b4321b752fea89f88c3207f59de Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Fri, 21 Oct 2011 18:36:18 +0300 Subject: [PATCH] Added missing virtual destructor --- platform/video_timer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;