summaryrefslogtreecommitdiff
path: root/src/lib/content_video.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-04-30 01:32:43 +0100
committerCarl Hetherington <cth@carlh.net>2017-04-30 01:32:43 +0100
commitccb67af328f99e55dd9e3a6c01f2128f59016b4a (patch)
tree2a5b3ca9b00aff38c1af2d2dada158358ce3404c /src/lib/content_video.h
parent6f27d1dde8fe133e1a589c36d5bffc105437fb77 (diff)
Fix some cppcheck warnings.
Diffstat (limited to 'src/lib/content_video.h')
-rw-r--r--src/lib/content_video.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/content_video.h b/src/lib/content_video.h
index ddc03b265..f59e99cfc 100644
--- a/src/lib/content_video.h
+++ b/src/lib/content_video.h
@@ -30,7 +30,9 @@ class ContentVideo
{
public:
ContentVideo ()
- : part (PART_WHOLE)
+ : frame (0)
+ , eyes (EYES_LEFT)
+ , part (PART_WHOLE)
{}
ContentVideo (boost::shared_ptr<const ImageProxy> i, Frame f, Eyes e, Part p)