mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2026-01-04 10:05:12 -06:00
Fix _hours operator
This commit is contained in:
@@ -43,7 +43,7 @@ constexpr Duration operator "" _us (unsigned long long t) { return Duration(t*
|
||||
constexpr Duration operator "" _ms (unsigned long long t) { return Duration(t*1'000'000); }
|
||||
constexpr Duration operator "" _sec (unsigned long long t) { return Duration(t*1'000'000'000ull); }
|
||||
constexpr Duration operator "" _mins (unsigned long long t) { return Duration(t*1'000'000'000ull*60); }
|
||||
constexpr Duration operator "" _hours(unsigned long long t) { return Duration(t*1'000'000'00'000ull*60*60); }
|
||||
constexpr Duration operator "" _hours(unsigned long long t) { return Duration(t*1'000'000'000ull*60*60); }
|
||||
|
||||
std::ostream& operator<<(std::ostream& out, Duration d);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user