summaryrefslogtreecommitdiff
path: root/src/lib/dcp_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-01-22 20:33:34 +0100
committerCarl Hetherington <cth@carlh.net>2023-02-18 00:41:34 +0100
commit0f9dc78d7da4f96dbbfbd692c19f74de72098351 (patch)
treec6ad4ceee12d3ed675b19e6d3a5aee55213289cd /src/lib/dcp_content.cc
parent9f646cd41ced9bf6f2e6fd735f92fae3aff1d6db (diff)
Cleanup: swap a list for a vector.
Diffstat (limited to 'src/lib/dcp_content.cc')
-rw-r--r--src/lib/dcp_content.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc
index cdf104f03..231a93bd0 100644
--- a/src/lib/dcp_content.cc
+++ b/src/lib/dcp_content.cc
@@ -258,7 +258,7 @@ DCPContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
atmos->set_length (examiner->atmos_length());
}
- list<shared_ptr<TextContent>> new_text;
+ vector<shared_ptr<TextContent>> new_text;
for (int i = 0; i < examiner->text_count(TextType::OPEN_SUBTITLE); ++i) {
auto c = make_shared<TextContent>(this, TextType::OPEN_SUBTITLE, TextType::OPEN_SUBTITLE);