From 8ee7dc35f4320a332133e9ff3ed838c85d4d5c25 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 24 May 2022 17:08:17 -0600 Subject: [PATCH] temporal: improve operator<< for MusicTimePoint --- libs/temporal/tempo.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/temporal/tempo.cc b/libs/temporal/tempo.cc index 3d8b6b2fa4..7382dc94fa 100644 --- a/libs/temporal/tempo.cc +++ b/libs/temporal/tempo.cc @@ -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);