diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-12-04 20:30:48 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-12-04 21:52:29 +0100 |
| commit | 32360aedc97a0cc9acc1b1c10d2e8351dcacb549 (patch) | |
| tree | c1906eb45f7e81b4c79c07b9821466a370e186f4 /test/test.cc | |
| parent | d6dfe05f4b39d0b5ff75185f9b00b5133b19c88e (diff) | |
Fix some ambiguous shared_ptrs, seen on Arch Linux.
Diffstat (limited to 'test/test.cc')
| -rw-r--r-- | test/test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.cc b/test/test.cc index a2016e92..450ff514 100644 --- a/test/test.cc +++ b/test/test.cc @@ -386,7 +386,7 @@ make_simple (boost::filesystem::path path, int reels, int frames, dcp::Standard shared_ptr<dcp::Subtitle> simple_subtitle () { - return make_shared<dcp::SubtitleString>( + return std::make_shared<dcp::SubtitleString>( optional<string>(), false, false, |
