[set] Use correct size for set_bits_t on arm64

This commit is contained in:
Bill Currie 2023-03-28 17:10:55 +09:00
parent d39f1307c5
commit 511389a973
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
///@{ ///@{
//FIXME other archs //FIXME other archs
#ifdef __x86_64__ #if defined(__x86_64__) || defined(__aarch64__)
typedef uint64_t set_bits_t; typedef uint64_t set_bits_t;
#else #else
typedef uint32_t set_bits_t; typedef uint32_t set_bits_t;