Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit d36e2d2

Browse files
committed
core.stdc.stdint: Fix int_fast8_t alias for Win64
1 parent ec339c3 commit d36e2d2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/core/stdc/stdint.d

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,7 @@ version (Windows)
6363
alias int_least64_t = long; ///
6464
alias uint_least64_t = ulong; ///
6565

66-
version (Win64) // TODO: this is wrong but tested in compilable/teststdint.d
67-
alias int_fast8_t = char; ///
68-
else
69-
alias int_fast8_t = byte; ///
66+
alias int_fast8_t = byte; ///
7067
alias uint_fast8_t = ubyte; ///
7168
alias int_fast16_t = int; ///
7269
alias uint_fast16_t = uint; ///

0 commit comments

Comments
 (0)