diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-08-26 14:29:06 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-08-29 18:28:40 +0200 |
| commit | c7f45cd00b94393f6e15428a2ea256995f890412 (patch) | |
| tree | 92c045700e0e60a2a44aec0daa5210278d11f4d6 /src/lib/util.cc | |
| parent | e71e6d33210e4a4c7d7841d0d5d8e906e00bb82f (diff) | |
Cleanup: use some more vector instead of list.
Diffstat (limited to 'src/lib/util.cc')
| -rw-r--r-- | src/lib/util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc index 05b69644f..4240279c6 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -461,7 +461,7 @@ LIBDCP_ENABLE_WARNINGS #if defined(DCPOMATIC_WINDOWS) || defined(DCPOMATIC_OSX) /* Render something to fontconfig to create its cache */ - list<StringText> subs; + vector<StringText> subs; dcp::SubtitleString ss( optional<string>(), false, false, false, dcp::Colour(), 42, 1, dcp::Time(), dcp::Time(), 0, dcp::HAlign::CENTER, 0, dcp::VAlign::CENTER, 0, dcp::Direction::LTR, "Hello dolly", dcp::Effect::NONE, dcp::Colour(), dcp::Time(), dcp::Time(), 0 |
