diff options
Diffstat (limited to 'src/lib/content_video.h')
| -rw-r--r-- | src/lib/content_video.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/content_video.h b/src/lib/content_video.h index 8b3d984df..ee169b6c5 100644 --- a/src/lib/content_video.h +++ b/src/lib/content_video.h @@ -37,14 +37,14 @@ public: , part (PART_WHOLE) {} - ContentVideo (boost::shared_ptr<const ImageProxy> i, Frame f, Eyes e, Part p) + ContentVideo (std::shared_ptr<const ImageProxy> i, Frame f, Eyes e, Part p) : image (i) , frame (f) , eyes (e) , part (p) {} - boost::shared_ptr<const ImageProxy> image; + std::shared_ptr<const ImageProxy> image; Frame frame; Eyes eyes; Part part; |
