diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-11 00:16:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-17 20:13:23 +0100 |
| commit | d95eacd3851a20e52202465ec22b4f72a4983dc8 (patch) | |
| tree | 1dfc1092ae7d2e6b6b7c313ad808415f578d9712 /src/subtitle_asset_internal.h | |
| parent | cbee0d077e698541afcea82a95bafcea5245ab89 (diff) | |
Replace std::list with std::vector in the API.
Diffstat (limited to 'src/subtitle_asset_internal.h')
| -rw-r--r-- | src/subtitle_asset_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/subtitle_asset_internal.h b/src/subtitle_asset_internal.h index 6168ba18..8a9ffe18 100644 --- a/src/subtitle_asset_internal.h +++ b/src/subtitle_asset_internal.h @@ -107,7 +107,7 @@ public: std::shared_ptr<Part> parent; Font font; - std::list<std::shared_ptr<Part> > children; + std::vector<std::shared_ptr<Part>> children; }; class String : public Part |
