summaryrefslogtreecommitdiff
path: root/src/fixed_width_ints.rs
Commit message (Collapse)AuthorAgeFilesLines
* Use static_assert_eq macroest312022-03-241-20/+24
| | | | | | | | This macro bases on the static_assert_size macro from the rust compiler. Its advantage is greater compatibility with older rust versions as well as better error messages on a mismatch, as both numbers are printed. The assert macro does not print the mismatching numbers as it only gets the bool from the == comparison.
* Typo fixest312022-03-241-1/+1
|
* Create optionally-available __int128 typedefs and use them for ARM64 ↵Aria Beingessner2022-03-231-0/+75
| | | | | | | | | | | | | definitions. This adds the following types to fixed_width_ints behind appropriate platform cfgs: * __int128 * __int128_t * __uint128 * __uint128_t and user_fpsimd_struct to arm64 android and linux.
* Formattinggnzlbg2019-09-121-32/+8
|
* Deprecates fixed-width integer type aliasesgnzlbg2019-05-291-0/+32
| | | | Closes #1304 .
* Refactor fixed-width integer types into its own modulegnzlbg2019-05-291-0/+12