diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-04-24 23:55:40 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-04-24 23:55:40 +0200 |
| commit | be68a7f548dbbe267a9767e41d583d564f51a2e5 (patch) | |
| tree | e16a5153937c223a48fb9d92b0dadf4acd5e64cd | |
| parent | 51d19737e7b510749ba46af57c7d99bccf988b54 (diff) | |
White space: overlaps.{cc,h}
| -rw-r--r-- | src/lib/overlaps.cc | 4 | ||||
| -rw-r--r-- | src/lib/overlaps.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/overlaps.cc b/src/lib/overlaps.cc index bed75a822..1ea6f6c12 100644 --- a/src/lib/overlaps.cc +++ b/src/lib/overlaps.cc @@ -32,10 +32,10 @@ ContentList dcpomatic::overlaps(shared_ptr<const Film> film, ContentList cl, function<bool (shared_ptr<const Content>)> part, DCPTime from, DCPTime to) { ContentList overlaps; - DCPTimePeriod period (from, to); + DCPTimePeriod period(from, to); for (auto i: cl) { if (part(i) && i->period(film).overlap(period)) { - overlaps.push_back (i); + overlaps.push_back(i); } } diff --git a/src/lib/overlaps.h b/src/lib/overlaps.h index f405c0fab..85d92bb31 100644 --- a/src/lib/overlaps.h +++ b/src/lib/overlaps.h @@ -34,7 +34,7 @@ namespace dcpomatic { * subtitle) that overlap a specified time range in the given * ContentList */ -ContentList overlaps ( +ContentList overlaps( std::shared_ptr<const Film> film, ContentList cl, std::function<bool (std::shared_ptr<const Content>)> part, dcpomatic::DCPTime from, dcpomatic::DCPTime to ); |
