diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-13 13:04:04 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-13 13:04:04 +0100 |
| commit | cafee6f81257fa81ee302b5d3ffa82213a0a6a44 (patch) | |
| tree | 87797f282d0bc1ca62aed44cbf98528ebeb4be86 /src/subrip_reader.cc | |
| parent | 18f00cbcdab8eaf3db1cb5a7fba3ed78bea565fa (diff) | |
Replace list with vector in most of the API.
Diffstat (limited to 'src/subrip_reader.cc')
| -rw-r--r-- | src/subrip_reader.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/subrip_reader.cc b/src/subrip_reader.cc index 89a5599..ab10f68 100644 --- a/src/subrip_reader.cc +++ b/src/subrip_reader.cc @@ -37,7 +37,6 @@ using std::string; using std::vector; -using std::list; using std::cout; using std::hex; using boost::lexical_cast; @@ -198,7 +197,7 @@ SubripReader::convert_line (string t, RawSubtitle& p) string tag; - list<Colour> colours; + vector<Colour> colours; colours.push_back (Colour (1, 1, 1)); /* XXX: missing <font> support */ |
