mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
temporal: improve operator<<() for MusicTimePoint (BBT markers)
This commit is contained in:
parent
cf9f9db48b
commit
7c5e7ddf59
1 changed files with 4 additions and 4 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue