| 1037 | } |
| 1038 | |
| 1039 | void DateTime::Tm::ComputeWeekDay() noexcept |
| 1040 | { |
| 1041 | _dayOfWeek = (Implementation::GetTruncatedJDN(Day, Month, Year) + 2) % 7; |
| 1042 | } |
| 1043 | |
| 1044 | DateTime DateTime::UtcNow() noexcept |
| 1045 | { |
nothing calls this directly
no test coverage detected