diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-01-22 20:33:34 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-02-18 00:41:34 +0100 |
| commit | 0f9dc78d7da4f96dbbfbd692c19f74de72098351 (patch) | |
| tree | c6ad4ceee12d3ed675b19e6d3a5aee55213289cd /src/lib/text_content.h | |
| parent | 9f646cd41ced9bf6f2e6fd735f92fae3aff1d6db (diff) | |
Cleanup: swap a list for a vector.
Diffstat (limited to 'src/lib/text_content.h')
| -rw-r--r-- | src/lib/text_content.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/text_content.h b/src/lib/text_content.h index 7c060cd48..4d4bdc507 100644 --- a/src/lib/text_content.h +++ b/src/lib/text_content.h @@ -199,7 +199,7 @@ public: return _language_is_additional; } - static std::list<std::shared_ptr<TextContent>> from_xml (Content* parent, cxml::ConstNodePtr, int version, std::list<std::string>& notes); + static std::vector<std::shared_ptr<TextContent>> from_xml(Content* parent, cxml::ConstNodePtr, int version, std::list<std::string>& notes); private: friend struct ffmpeg_pts_offset_test; |
