| 107 | } |
| 108 | |
| 109 | SC::Time::Absolute SC::Time::Absolute::offsetBy(Milliseconds other) const |
| 110 | { |
| 111 | constexpr int64_t maxValue = INT64_MAX; |
| 112 | if (milliseconds > maxValue - other.ms) |
| 113 | { |
| 114 | return Time::Absolute(maxValue); |
| 115 | } |
| 116 | return Time::Absolute(milliseconds + other.ms); |
| 117 | } |
| 118 | |
| 119 | SC::Time::HighResolutionCounter::HighResolutionCounter() |
| 120 | { |