Enabled showing the file source cached time ranges

This commit is contained in:
xenakios
2019-02-28 16:04:04 +02:00
parent cfb8f4f303
commit 27b014a6e7
3 changed files with 14 additions and 6 deletions

View File

@ -53,6 +53,11 @@ inline String toString(double x)
return String(x,3);
}
template<typename T>
inline String toString(const Range<T>& x)
{
return String(x.getStart()) + " " + String(x.getEnd());
}
template<typename... Args>
inline String formatted(Args... args)