Changeset 6702d7e in mainline


Ignore:
Timestamp:
2018-07-05T21:41:18Z (6 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0b4b81c
Parents:
a3067af
git-author:
Jaroslav Jindrak <dzejrou@…> (2017-11-06 10:51:33)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:18)
Message:

cpp: added basic type aliases required by the standard but not provided by HelenOS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/cstdint

    ra3067af r6702d7e  
    3939}
    4040
     41using int_fast8_t  = int8_t;
     42using int_fast16_t = int16_t;
     43using int_fast32_t = int32_t;
     44using int_fast64_t = int64_t;
     45
     46using int_least8_t  = int8_t;
     47using int_least16_t = int16_t;
     48using int_least32_t = int32_t;
     49using int_least64_t = int64_t;
     50
     51using uint_fast8_t  = uint8_t;
     52using uint_fast16_t = uint16_t;
     53using uint_fast32_t = uint32_t;
     54using uint_fast64_t = uint64_t;
     55
     56using uint_least8_t  = uint8_t;
     57using uint_least16_t = uint16_t;
     58using uint_least32_t = uint32_t;
     59using uint_least64_t = uint64_t;
     60
    4161}
    4262
Note: See TracChangeset for help on using the changeset viewer.