temporal: show BBT marker point names in operator<<

This commit is contained in:
Paul Davis 2025-08-19 10:48:05 -06:00
parent 2aad1ac5f5
commit 7c9b9ceb7e

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