serge-sans-paille / frozen

a header-only, constexpr alternative to gperf for C++14 users
Apache License 2.0
1.27k stars 103 forks source link

use consistent integer types #152

Closed justusranvier closed 1 year ago

justusranvier commented 1 year ago

All usages of uint64_t and size_t changed to std::uint64_t and std::size_t since most instances were already using the latter version and the former versions may or may not exist in all environments.

serge-sans-paille commented 1 year ago

thanks!