temporal: show BBT marker point names in operator<<

This commit is contained in:
Paul Davis 2025-08-19 10:48:05 -06:00 committed by Edgar Aichinger
parent af4c7cd960
commit ea00d3573d

View file

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