temporal: improve operator<<() for MusicTimePoint (BBT markers)

This commit is contained in:
Paul Davis 2023-09-04 10:46:04 -06:00
parent cf9f9db48b
commit 7c5e7ddf59

View File

@ -3012,10 +3012,10 @@ std::operator<<(std::ostream& str, TempoPoint const & t)
std::ostream&
std::operator<<(std::ostream& str, MusicTimePoint const & p)
{
str << "MP @ ";
str << *((Point const *) &p);
str << *((Tempo const *) &p);
str << *((Meter const *) &p);
str << "MP @ "
<< *((Point const *) &p) << ' '
<< *((Tempo const *) &p) << ' '
<< *((Meter const *) &p);
return str;
}