diff options
Diffstat (limited to 'src/tools/dcpomatic_create.cc')
| -rw-r--r-- | src/tools/dcpomatic_create.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc index 4c40c24d3..a4f8dda6a 100644 --- a/src/tools/dcpomatic_create.cc +++ b/src/tools/dcpomatic_create.cc @@ -45,6 +45,7 @@ #include <stdexcept> #include <string> + using std::cerr; using std::cout; using std::dynamic_pointer_cast; @@ -53,8 +54,10 @@ using std::list; using std::make_shared; using std::shared_ptr; using std::string; +using std::vector; using boost::optional; + class SimpleSignalManager : public SignalManager { public: @@ -117,7 +120,7 @@ main (int argc, char* argv[]) for (auto cli_content: cc.content) { auto const can = boost::filesystem::canonical (cli_content.path); - list<shared_ptr<Content>> film_content_list; + vector<shared_ptr<Content>> film_content_list; if (boost::filesystem::exists (can / "ASSETMAP") || (boost::filesystem::exists (can / "ASSETMAP.xml"))) { auto dcp = make_shared<DCPContent>(can); |
