Fixed string conversion for Timed<void>
This commit is contained in:
parent
5cc13cb16f
commit
1e29151974
|
@ -120,7 +120,7 @@ private:
|
||||||
TimeRange timeRange;
|
TimeRange timeRange;
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename T>
|
template<>
|
||||||
std::ostream& operator<<(std::ostream& stream, const Timed<void>& timedValue) {
|
inline std::ostream& operator<<(std::ostream& stream, const Timed<void>& timedValue) {
|
||||||
return stream << "Timed<void>(" << timedValue.getTimeRange().getStart() << ", " << timedValue.getTimeRange().getEnd() << ")";
|
return stream << "Timed<void>(" << timedValue.getTimeRange().getStart() << ", " << timedValue.getTimeRange().getEnd() << ")";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue