timerange: use doubles instead of rationals when printing debug info

Doubles are infinitely more readable and have been the vast majority of
debug printing cases thus far.
This commit is contained in:
itsmattkc
2020-06-01 17:45:21 +10:00
parent 1301d4b9cf
commit 6acfe995fa
+1 -1
View File
@@ -241,6 +241,6 @@ OLIVE_NAMESPACE_EXIT
QDebug operator<<(QDebug debug, const OLIVE_NAMESPACE::TimeRange &r)
{
debug.nospace() << r.in() << " - " << r.out();
debug.nospace() << r.in().toDouble() << " - " << r.out().toDouble();
return debug.space();
}