lgtm,codescanning
- Added definitions for types found in
cstdint
. Added typesFixedWidthIntegralType
,MinimumWidthIntegralType
,FastestMinimumWidthIntegralType
, andMaximumWidthIntegralType
to describe types such asint8_t
,int_least8_t
,int_fast8_t
, andintmax_t
respectively. - Changed definition of
Intmax_t
andUintmax_t
to be part of the new type structure. - Added a type
FixedWidthEnumType
which describes enums based on a fixed-width integer type. For instance,enum e: uint8_t = { a, b };
.