Differences From Artifact [a573e7c5b9]:
- File win/tclWinTime.c — part of check-in [3dcef36ee2] at 2023-08-24 17:33:01 on branch bug-86dd172271 — Update Tcl_Time for 32-bit systems and win64, being able to handle time > 2038. Suggested in in ticket [86dd172271] (user: jan.nijtmans size: 34456) [more...]
To Artifact [917637eceb]:
- File win/tclWinTime.c — part of check-in [5ed1c2b366] at 2024-04-27 17:30:09 on branch main — Fix clang warning: tclWinTime.c:84:6: error: suggest braces around initialization of subobject [-Werror,-Wmissing-braces] {0, 0}, ^~~~ { } (user: jan.nijtmans size: 34466) [more...]
| ︙ | |||
77 78 79 80 81 82 83 | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | - - - - - + + + + + |
#if defined(HAVE_CAST_TO_UNION) && !defined(__cplusplus)
(LARGE_INTEGER) (long long) 0,
(ULARGE_INTEGER) (DWORDLONG) 0,
(LARGE_INTEGER) (long long) 0,
(LARGE_INTEGER) (long long) 0,
(LARGE_INTEGER) (long long) 0,
#else
|
| ︙ |