Revert "Use make_shared<>."
[dcpomatic.git] / src / tools / dcpomatic_kdm.cc
index eb44b4997ff06982f23a0373f970564ca0879738..c686a974de4d0746bc539b120cec56b7ad32677a 100644 (file)
@@ -51,7 +51,6 @@
 #endif
 #include <boost/bind.hpp>
 #include <boost/foreach.hpp>
-#include <boost/make_shared.hpp>
 
 #ifdef check
 #undef check
@@ -62,7 +61,6 @@ using std::list;
 using std::string;
 using std::vector;
 using boost::shared_ptr;
-using boost::make_shared;
 using boost::bind;
 
 enum {
@@ -303,13 +301,13 @@ private:
                                if (film_name.empty ()) {
                                        film_name = decrypted.content_title_text ();
                                }
-                               shared_ptr<Job> job = boost::make_shared<SendKDMEmailJob> (
-                                       film_name,
-                                       decrypted.content_title_text(),
-                                       _timing->from(), _timing->until(),
-                                       CinemaKDMs::collect (screen_kdms),
-                                       shared_ptr<Log> ()
-                                       );
+                               shared_ptr<Job> job (new SendKDMEmailJob (
+                                                            film_name,
+                                                            decrypted.content_title_text(),
+                                                            _timing->from(), _timing->until(),
+                                                            CinemaKDMs::collect (screen_kdms),
+                                                            shared_ptr<Log> ()
+                                                            ));
 
                                JobManager::instance()->add (job);
                                if (_job_view) {