diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-11-06 10:49:18 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-11-06 10:49:18 +0000 |
| commit | 1b019d8d8c4f294a9adcba00832d0868dc373d75 (patch) | |
| tree | 4195b95d5632d9367f96441dafa707844c0f5dcd /src/lib | |
| parent | 2ba5ab5c43e06a29c6c0c9b70da045ac680c48eb (diff) | |
Try to fix build with new g++.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/video_content.h | 2 |
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); |
