diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-05-14 23:01:06 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-11-29 21:20:31 +0100 |
| commit | 0924215672ae0e9e02058e4cc8ac7268667612b9 (patch) | |
| tree | 7a93f05ebbd34d0d7c5d2e6d5312154c7a84a0b5 /src/lib/overlaps.cc | |
| parent | e776133c2dea5471651df202af23a95b2cf6422a (diff) | |
Put overlaps() into the dcpomatic namespace.
Diffstat (limited to 'src/lib/overlaps.cc')
| -rw-r--r-- | src/lib/overlaps.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/overlaps.cc b/src/lib/overlaps.cc index fbc6b5cb1..bed75a822 100644 --- a/src/lib/overlaps.cc +++ b/src/lib/overlaps.cc @@ -28,7 +28,8 @@ using std::shared_ptr; using namespace dcpomatic; -ContentList overlaps (shared_ptr<const Film> film, ContentList cl, function<bool (shared_ptr<const Content>)> part, DCPTime from, DCPTime to) +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); |
