diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-05-31 21:02:42 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-06-07 17:01:06 +0200 |
| commit | 2975fa5cd5dcfaa806b07ef39c8900e07f417658 (patch) | |
| tree | fdf2b84ad053a61882afec14a6fbd16fbd1a4493 /src/lib/dcp_subtitle_decoder.cc | |
| parent | 9b92e596727bcbab5df68ed72ddf59702a4a9702 (diff) | |
Switch some list -> vector for consistency.
Diffstat (limited to 'src/lib/dcp_subtitle_decoder.cc')
| -rw-r--r-- | src/lib/dcp_subtitle_decoder.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dcp_subtitle_decoder.cc b/src/lib/dcp_subtitle_decoder.cc index d5cbabf1b..940c8c75a 100644 --- a/src/lib/dcp_subtitle_decoder.cc +++ b/src/lib/dcp_subtitle_decoder.cc @@ -118,8 +118,8 @@ DCPSubtitleDecoder::pass () time of emitting the first. */ - list<dcp::SubtitleString> s; - list<dcp::SubtitleImage> i; + vector<dcp::SubtitleString> s; + vector<dcp::SubtitleImage> i; auto const p = content_time_period (*_next); while (_next != _subtitles.end () && content_time_period (*_next) == p) { |
