std::shared_ptr
[dcpomatic.git] / test / torture_test.cc
index 979e1beb84c917cd20e3f71f464d0fb9c5bd9bc0..23eb3ca8e66fafbb2163d42978fbb29fd4824b4c 100644 (file)
@@ -43,8 +43,8 @@
 
 using std::list;
 using std::cout;
-using boost::shared_ptr;
-using boost::dynamic_pointer_cast;
+using std::shared_ptr;
+using std::dynamic_pointer_cast;
 using namespace dcpomatic;
 
 /** Test start/end trim and positioning of some audio content */
@@ -90,9 +90,9 @@ BOOST_AUTO_TEST_CASE (torture_test1)
        dcp.read ();
 
        list<shared_ptr<dcp::CPL> > cpls = dcp.cpls ();
-       BOOST_REQUIRE_EQUAL (cpls.size(), 1);
+       BOOST_REQUIRE_EQUAL (cpls.size(), 1U);
        list<shared_ptr<dcp::Reel> > reels = cpls.front()->reels ();
-       BOOST_REQUIRE_EQUAL (reels.size(), 1);
+       BOOST_REQUIRE_EQUAL (reels.size(), 1U);
 
        /* Check sound */