From 5cd1888c9dcb8b32bcfe08be38bdd13fd8a09b5e Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 8 Aug 2018 22:43:53 -0700 Subject: [PATCH] [atomic] Change Mac atomic int type to int If ever int is not 32bit, we'll fix this... --- src/hb-atomic-private.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-atomic-private.hh b/src/hb-atomic-private.hh index f62cfbd6c..a888c462f 100644 --- a/src/hb-atomic-private.hh +++ b/src/hb-atomic-private.hh @@ -159,7 +159,7 @@ static inline bool _hb_compare_and_swap_ptr (const void **P, const void *O, cons #define _hb_memory_barrier() OSMemoryBarrier () -typedef int32_t hb_atomic_int_impl_t; +typedef int hb_atomic_int_impl_t; #define hb_atomic_int_impl_add(AI, V) (OSAtomicAdd32Barrier ((V), (AI)) - (V)) #if (MAC_OS_X_VERSION_MIN_REQUIRED > MAC_OS_X_VERSION_10_4 || __IPHONE_VERSION_MIN_REQUIRED >= 20100)