include temporal/range.cc as source module

This commit is contained in:
Paul Davis 2020-11-27 22:32:02 -07:00
parent e1620a22cf
commit 5772dcc72b
2 changed files with 3 additions and 2 deletions

View File

@ -96,7 +96,7 @@ Range::subtract (RangeList & sub) const
return result;
}
template<> OverlapType coverage_exclusive_ends<int64_t> (int64_t sa, int64_t eaE, int64_t sb, int64_t ebE)
template<> OverlapType Temporal::coverage_exclusive_ends<int64_t> (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);

View File

@ -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):