Skip to content

Commit

Permalink
core.stdc.stdint: fix mistake with int_fast16_t
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed May 19, 2018
1 parent dff824e commit f0e6727
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/stdc/stdint.d
Expand Up @@ -125,8 +125,8 @@ else version (OSX)

alias int_fast8_t = byte; ///
alias uint_fast8_t = ubyte; ///
alias int_fast16_t = int; ///
alias uint_fast16_t = uint; ///
alias int_fast16_t = short; ///
alias uint_fast16_t = ushort; ///
alias int_fast32_t = int; ///
alias uint_fast32_t = uint; ///
alias int_fast64_t = long; ///
Expand Down

0 comments on commit f0e6727

Please sign in to comment.