mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
527 B
527 B
lgtm,codescanning
- Added definitions for types found in
cstdint. Added typesFixedWidthIntegralType,MinimumWidthIntegralType,FastestMinimumWidthIntegralType, andMaximumWidthIntegralTypeto describe types such asint8_t,int_least8_t,int_fast8_t, andintmax_trespectively. - Changed definition of
Intmax_tandUintmax_tto be part of the new type structure. - Added a type
FixedWidthEnumTypewhich describes enums based on a fixed-width integer type. For instance,enum e: uint8_t = { a, b };.