temporal: improve operator<<() for MusicTimePoint (BBT markers)
This commit is contained in:
parent
cf9f9db48b
commit
7c5e7ddf59
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user