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

Commit 3a5e727

Browse files
authored
Merge pull request #2186 from WalterBright/stdint2
core.stdc.stdint: fix mistake with int_fast16_t merged-on-behalf-of: Brad Roberts <braddr@users.noreply.github.com>
2 parents dff824e + f0e6727 commit 3a5e727

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/stdc/stdint.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ else version (OSX)
125125

126126
alias int_fast8_t = byte; ///
127127
alias uint_fast8_t = ubyte; ///
128-
alias int_fast16_t = int; ///
129-
alias uint_fast16_t = uint; ///
128+
alias int_fast16_t = short; ///
129+
alias uint_fast16_t = ushort; ///
130130
alias int_fast32_t = int; ///
131131
alias uint_fast32_t = uint; ///
132132
alias int_fast64_t = long; ///

0 commit comments

Comments
 (0)