[atomic] Fix fallback impl

This commit is contained in:
Behdad Esfahbod 2018-07-31 22:21:21 -07:00
parent 4bc16aca47
commit 63c74e8d1d
1 changed files with 2 additions and 2 deletions

View File

@ -205,10 +205,10 @@ typedef int hb_atomic_int_impl_t;
#define HB_ATOMIC_INT_INIT(V) {V}
#endif
#ifndef hb_atomic_int_impl_set_relaxed
#define hb_atomic_int_impl_set_relaxed(AI, V) ((AI) = (V))
#define hb_atomic_int_impl_set_relaxed(AI, V) (*(AI) = (V))
#endif
#ifndef hb_atomic_int_impl_get_relaxed
#define hb_atomic_int_impl_get_relaxed(AI) (AI)
#define hb_atomic_int_impl_get_relaxed(AI) (*(AI))
#endif