temporal: improve operator<< for MusicTimePoint

This commit is contained in:
Paul Davis 2022-05-24 17:08:17 -06:00
parent 735835dff3
commit 8ee7dc35f4
1 changed files with 1 additions and 1 deletions

View File

@ -2116,7 +2116,7 @@ std::operator<<(std::ostream& str, TempoPoint const & t)
std::ostream&
std::operator<<(std::ostream& str, MusicTimePoint const & p)
{
str << "MP@";
str << "MP @ ";
str << *((Point const *) &p);
str << *((Tempo const *) &p);
str << *((Meter const *) &p);