From ea00d3573d46105fa88c4b5a6fdc2d44f7551879 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 19 Aug 2025 10:48:05 -0600 Subject: [PATCH] temporal: show BBT marker point names in operator<< --- 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 130b9c3ffb..1a56e68d2a 100644 --- a/libs/temporal/tempo.cc +++ b/libs/temporal/tempo.cc @@ -3194,7 +3194,7 @@ std::operator<<(std::ostream& str, TempoPoint const & t) std::ostream& std::operator<<(std::ostream& str, MusicTimePoint const & p) { - str << "MP @ " + str << "MP " << p.name() << " @ " << *((Point const *) &p) << ' ' << *((Tempo const *) &p) << ' ' << *((Meter const *) &p);