diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-11 00:16:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-17 20:13:23 +0100 |
| commit | d95eacd3851a20e52202465ec22b4f72a4983dc8 (patch) | |
| tree | 1dfc1092ae7d2e6b6b7c313ad808415f578d9712 /test/verify_test.cc | |
| parent | cbee0d077e698541afcea82a95bafcea5245ab89 (diff) | |
Replace std::list with std::vector in the API.
Diffstat (limited to 'test/verify_test.cc')
| -rw-r--r-- | test/verify_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/verify_test.cc b/test/verify_test.cc index 98a9cd96..4f0fe6f1 100644 --- a/test/verify_test.cc +++ b/test/verify_test.cc @@ -149,7 +149,7 @@ private: static void -dump_notes (list<dcp::VerificationNote> const & notes) +dump_notes (vector<dcp::VerificationNote> const & notes) { for (auto i: notes) { std::cout << dcp::note_to_string(i) << "\n"; @@ -900,7 +900,7 @@ BOOST_AUTO_TEST_CASE (verify_various_invalid_languages) static -list<dcp::VerificationNote> +vector<dcp::VerificationNote> check_picture_size (int width, int height, int frame_rate, bool three_d) { using namespace boost::filesystem; |
