From e89d727939ad9861a041e27573fa4b888e90a7df Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 4 Aug 2020 15:47:40 -0600 Subject: [PATCH] Temporal: remove the final #warning from timeline.cc --- libs/temporal/timeline.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/temporal/timeline.cc b/libs/temporal/timeline.cc index 408c5cc9a4..f013739f77 100644 --- a/libs/temporal/timeline.cc +++ b/libs/temporal/timeline.cc @@ -465,8 +465,9 @@ timepos_t:: operator+= (superclock_t s) v += s; } else { TempoMap::SharedPtr tm (TempoMap::fetch()); -#warning paul imeplement TempoMap::beats_plus_superclock_as_beats + v = build (true, tm->scwalk_to_quarters (beats(), s).to_ticks()); } + return *this; }