From d282c317d0bb679cfc6b494bcdc93cf65997cdcf Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 22 Sep 2023 15:11:59 -0600 Subject: [PATCH] temporal: use new BBT variant of get_tempo_and_meter() --- libs/temporal/tempo.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/temporal/tempo.cc b/libs/temporal/tempo.cc index 2aa740930f..9d89b5f5b4 100644 --- a/libs/temporal/tempo.cc +++ b/libs/temporal/tempo.cc @@ -3860,7 +3860,7 @@ TempoMap::metric_at (BBT_Argument const & bbt, bool can_match) const * time to get the metric. */ - (void) get_tempo_and_meter (tp, mp, bbt.reference(), can_match, false); + (void) get_tempo_and_meter (tp, mp, bbt, can_match, false); return TempoMetric (*tp, *mp); }