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

Commit

Permalink
Merge pull request #1618 from redstar/cent
Browse files Browse the repository at this point in the history
Enable uint128_t/int128_t if ucent/cent type is implemented.
  • Loading branch information
WalterBright committed Jul 31, 2016
2 parents 51913a6 + 0cf5837 commit c892e1a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/core/stdc/stdint.d
Expand Up @@ -35,7 +35,9 @@ alias int16_t = short;
alias int32_t = int ;
///
alias int64_t = long ;
//alias int128_t = cent;
///
static if (is(ucent))
alias int128_t = cent;

///
alias uint8_t = ubyte ;
Expand All @@ -45,7 +47,9 @@ alias uint16_t = ushort;
alias uint32_t = uint ;
///
alias uint64_t = ulong ;
//alias uint128_t = ucent;
///
static if (is(ucent))
alias uint128_t = ucent;

///
alias int_least8_t = byte ;
Expand Down

0 comments on commit c892e1a

Please sign in to comment.