summaryrefslogtreecommitdiff
path: root/src/lib/video_content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-08 21:32:44 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-08 21:32:44 +0200
commit3339d3bce70afe9ae2ca10e9fcfc4b54b748fbf4 (patch)
tree9cac355432ba25cc3d43017382d73e0640f50996 /src/lib/video_content.h
parent00762c2d9a4240d016150cd7555aee3dad8542ae (diff)
Assorted C++11/formatting cleanups.
Diffstat (limited to 'src/lib/video_content.h')
-rw-r--r--src/lib/video_content.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/video_content.h b/src/lib/video_content.h
index 4e9e5815f..c1e1dbeec 100644
--- a/src/lib/video_content.h
+++ b/src/lib/video_content.h
@@ -61,7 +61,7 @@ class VideoContent : public ContentPart, public std::enable_shared_from_this<Vid
public:
explicit VideoContent (Content* parent);
VideoContent (Content* parent, cxml::ConstNodePtr, int);
- VideoContent (Content* parent, std::vector<std::shared_ptr<Content> >);
+ VideoContent (Content* parent, std::vector<std::shared_ptr<Content>>);
void as_xml (xmlpp::Node *) const;
std::string technical_summary () const;
@@ -249,4 +249,5 @@ private:
boost::optional<dcp::LanguageTag> _burnt_subtitle_language;
};
+
#endif