From 5772dcc72b31bbc34cb098fd4cdd9998b6a1385d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 27 Nov 2020 22:32:02 -0700 Subject: [PATCH] include temporal/range.cc as source module --- libs/temporal/range.cc | 2 +- libs/temporal/wscript | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/temporal/range.cc b/libs/temporal/range.cc index c6721b5439..3cd3948175 100644 --- a/libs/temporal/range.cc +++ b/libs/temporal/range.cc @@ -96,7 +96,7 @@ Range::subtract (RangeList & sub) const return result; } -template<> OverlapType coverage_exclusive_ends (int64_t sa, int64_t eaE, int64_t sb, int64_t ebE) +template<> OverlapType Temporal::coverage_exclusive_ends (int64_t sa, int64_t eaE, int64_t sb, int64_t ebE) { /* convert end positions to inclusive */ return coverage_inclusive_ends (sa, eaE-1, sb, ebE-1); diff --git a/libs/temporal/wscript b/libs/temporal/wscript index a2281a1f2a..f32f34e4eb 100644 --- a/libs/temporal/wscript +++ b/libs/temporal/wscript @@ -28,11 +28,12 @@ temporal_sources = [ 'debug.cc', 'bbt_time.cc', 'enums.cc', + 'range.cc', + 'superclock.cc', 'tempo.cc', 'time.cc', 'time_converter.cc', 'timeline.cc', - 'superclock.cc' ] def options(opt):