summaryrefslogtreecommitdiff
path: root/test/combine_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-11 20:49:18 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-11 20:50:12 +0200
commit3370a67e8a9aeaec45911ba1c714a0d259781fdf (patch)
treee1d49c3d59eeb94dfa836b90f8c9042df3528c82 /test/combine_test.cc
parent3a94f95d49e99fe5936e19977c28de25033488a8 (diff)
Small bits of tidying up.
Diffstat (limited to 'test/combine_test.cc')
-rw-r--r--test/combine_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/combine_test.cc b/test/combine_test.cc
index 59931be7..99795592 100644
--- a/test/combine_test.cc
+++ b/test/combine_test.cc
@@ -195,10 +195,10 @@ BOOST_AUTO_TEST_CASE (combine_two_dcps_with_interop_subs_test)
using namespace boost::filesystem;
boost::filesystem::path const out = "build/test/combine_two_dcps_with_interop_subs_test";
- shared_ptr<dcp::DCP> first = make_simple_with_interop_subs ("build/test/combine_input1");
+ auto first = make_simple_with_interop_subs ("build/test/combine_input1");
first->write_xml (dcp::Standard::INTEROP);
- shared_ptr<dcp::DCP> second = make_simple_with_interop_subs ("build/test/combine_input2");
+ auto second = make_simple_with_interop_subs ("build/test/combine_input2");
second->write_xml (dcp::Standard::INTEROP);
remove_all (out);