diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-01-22 20:33:34 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-02-27 14:47:25 +0100 |
| commit | c291a92c51be6ad9ee6c43bd0ec93aec06ac981c (patch) | |
| tree | 51d23f0b0557ac50355e3a553e4ddfd557947748 /src/lib/content.h | |
| parent | 0d87795d5305db9d75894ba9857662b1c0cfeeb3 (diff) | |
Cleanup: swap a list for a vector.
Diffstat (limited to 'src/lib/content.h')
| -rw-r--r-- | src/lib/content.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/content.h b/src/lib/content.h index 979680d6a..0ce87ed9b 100644 --- a/src/lib/content.h +++ b/src/lib/content.h @@ -208,7 +208,7 @@ public: std::shared_ptr<VideoContent> video; std::shared_ptr<AudioContent> audio; - std::list<std::shared_ptr<TextContent>> text; + std::vector<std::shared_ptr<TextContent>> text; std::shared_ptr<AtmosContent> atmos; std::shared_ptr<TextContent> only_text () const; |
