From 511389a973077dfaab1062a0abed16ca5df3758d Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 28 Mar 2023 17:10:55 +0900 Subject: [PATCH] [set] Use correct size for set_bits_t on arm64 --- include/QF/set.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/QF/set.h b/include/QF/set.h index 20b94897c..0d3c9327e 100644 --- a/include/QF/set.h +++ b/include/QF/set.h @@ -40,7 +40,7 @@ ///@{ //FIXME other archs -#ifdef __x86_64__ +#if defined(__x86_64__) || defined(__aarch64__) typedef uint64_t set_bits_t; #else typedef uint32_t set_bits_t;