Commit 0d99e5b
Fix int64_t/uint64_t conversion on Windows
The convertFromString<int64_t> and convertFromString<uint64_t>
functions were using 'long' and 'unsigned long' for parsing.
On Windows, these types are 32-bit, causing conversion failures
for values that exceed the 32-bit range.
Changed to use int64_t/uint64_t directly for proper cross-platform
64-bit integer handling.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>1 parent ad7d74e commit 0d99e5b
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
120 | 120 | | |
121 | 121 | | |
122 | 122 | | |
123 | | - | |
| 123 | + | |
124 | 124 | | |
125 | 125 | | |
126 | 126 | | |
| |||
133 | 133 | | |
134 | 134 | | |
135 | 135 | | |
136 | | - | |
| 136 | + | |
137 | 137 | | |
138 | 138 | | |
139 | 139 | | |
| |||
0 commit comments