diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-12-16 22:50:25 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-03-12 00:43:51 +0100 |
| commit | afed87b4f64f8cb4d99a0cad0eda664a604a10f7 (patch) | |
| tree | f754078b5dbeca175c663ffd0c3b901c929eb243 /src/lib/film.h | |
| parent | 5d53e906d6f73ad9f9ae85a423a18f5814904bdb (diff) | |
Use std::vector and emplace_back(), lengthen variable name.
Diffstat (limited to 'src/lib/film.h')
| -rw-r--r-- | src/lib/film.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/film.h b/src/lib/film.h index 036bbed7e..a5cefa4d4 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -186,7 +186,7 @@ public: return _playlist; } - std::list<dcpomatic::DCPTimePeriod> reels () const; + std::vector<dcpomatic::DCPTimePeriod> reels() const; std::list<int> mapped_audio_channels () const; boost::optional<dcp::LanguageTag> audio_language () const { |
