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