summaryrefslogtreecommitdiff
path: root/src/lib/ffmpeg_content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-12-02 23:05:16 +0100
committerCarl Hetherington <cth@carlh.net>2021-12-03 21:19:28 +0100
commitc85f253637e6aecfd7ce7bd53c68a2a73ca49d7b (patch)
treec855a15665e4bc7b857350d59050547ff927a4af /src/lib/ffmpeg_content.h
parent1702a1693f0d9407877b6b3bfda5af47e557f16f (diff)
Missing explicit.
Diffstat (limited to 'src/lib/ffmpeg_content.h')
-rw-r--r--src/lib/ffmpeg_content.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ffmpeg_content.h b/src/lib/ffmpeg_content.h
index ce4a8aa69..d370335b2 100644
--- a/src/lib/ffmpeg_content.h
+++ b/src/lib/ffmpeg_content.h
@@ -47,9 +47,9 @@ public:
class FFmpegContent : public Content
{
public:
- FFmpegContent (boost::filesystem::path);
+ explicit FFmpegContent (boost::filesystem::path);
FFmpegContent (cxml::ConstNodePtr, int version, std::list<std::string> &);
- FFmpegContent (std::vector<std::shared_ptr<Content>>);
+ explicit FFmpegContent (std::vector<std::shared_ptr<Content>>);
std::shared_ptr<FFmpegContent> shared_from_this () {
return std::dynamic_pointer_cast<FFmpegContent> (Content::shared_from_this ());