std::shared_ptr
[dcpomatic.git] / src / tools / dcpomatic_create.cc
index 857359117c3c64309b2c4a35f0c1fcba452bfa5f..568dfa56c74c130e1c58c544b6c0ce47863ae764 100644 (file)
@@ -50,8 +50,8 @@ using std::cout;
 using std::cerr;
 using std::list;
 using std::exception;
-using boost::shared_ptr;
-using boost::dynamic_pointer_cast;
+using std::shared_ptr;
+using std::dynamic_pointer_cast;
 using boost::optional;
 
 class SimpleSignalManager : public SignalManager
@@ -102,7 +102,6 @@ main (int argc, char* argv[])
                film->set_dcp_content_type (cc.dcp_content_type);
                film->set_interop (cc.standard == dcp::INTEROP);
                film->set_use_isdcf_name (!cc.no_use_isdcf_name);
-               film->set_signed (!cc.no_sign);
                film->set_encrypted (cc.encrypt);
                film->set_three_d (cc.threed);
                if (cc.fourk) {