13
0

temporal: add the entire _points list to output of TempoMap::dump()

This commit is contained in:
Paul Davis 2021-11-13 07:55:52 -07:00
parent f0cd3b5c0c
commit b67965f499

View File

@ -1624,6 +1624,10 @@ TempoMap::dump (std::ostream& ostr) const
for (MusicTimes::const_iterator m = _bartimes.begin(); m != _bartimes.end(); ++m) {
ostr << &*m << ' ' << *m << endl;
}
ostr << "... all points ...\n";
for (Points::const_iterator p = _points.begin(); p != _points.end(); ++p) {
ostr << &*p << ' ' << *p << endl;
}
ostr << "------------\n\n\n";
}