From 1b019d8d8c4f294a9adcba00832d0868dc373d75 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 6 Nov 2015 10:49:18 +0000 Subject: [PATCH] Try to fix build with new g++. --- src/lib/video_content.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/video_content.h b/src/lib/video_content.h index aa541fc32..309fa0670 100644 --- a/src/lib/video_content.h +++ b/src/lib/video_content.h @@ -86,7 +86,7 @@ public: */ bool has_own_video_frame_rate () const { boost::mutex::scoped_lock lm (_mutex); - return _video_frame_rate; + return static_cast(_video_frame_rate); } void set_video_frame_type (VideoFrameType); -- 2.30.2