diff --git a/libs/temporal/timeline.cc b/libs/temporal/timeline.cc index 0a1ee2354e..1da2894a4a 100644 --- a/libs/temporal/timeline.cc +++ b/libs/temporal/timeline.cc @@ -351,6 +351,12 @@ timecnt_t::expensive_gte (timecnt_t const & other) const return Beats::ticks (_distance.val()) >= other.beats (); } +std::ostream& +std::operator<< (std::ostream & o, timecnt_t const & tc) +{ + return o << tc.to_string(); +} + /* timepos */ timepos_t::timepos_t (timecnt_t const & t)