summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-11-06 10:49:18 +0000
committerCarl Hetherington <cth@carlh.net>2015-11-06 10:49:18 +0000
commit1b019d8d8c4f294a9adcba00832d0868dc373d75 (patch)
tree4195b95d5632d9367f96441dafa707844c0f5dcd /src/lib
parent2ba5ab5c43e06a29c6c0c9b70da045ac680c48eb (diff)
Try to fix build with new g++.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/video_content.h2
1 files changed, 1 insertions, 1 deletions
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<bool>(_video_frame_rate);
}
void set_video_frame_type (VideoFrameType);