Skip to content

Commit

Permalink
Style: clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
alfred2g committed Feb 23, 2024
1 parent 2afc92a commit d3e9dbe
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions include/aws/common/atomics_msvc.inl
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ typedef long long aws_atomic_impl_int_t;
#endif

#ifdef _M_ARM64
# define RW_BARRIER() __dmb(_ARM64_BARRIER_SY)
# define R_BARRIER() __dmb(_ARM64_BARRIER_ST)
# define w_BARRIER() __dmb(_ARM64_BARRIER_LD)
# define SW_BARRIER() _ReadWriteBarrier();
# define RW_BARRIER() __dmb(_ARM64_BARRIER_SY)
# define R_BARRIER() __dmb(_ARM64_BARRIER_ST)
# define w_BARRIER() __dmb(_ARM64_BARRIER_LD)
# define SW_BARRIER() _ReadWriteBarrier();
#else
# define RW_BARRIER()
# define R_BARRIER()
# define w_BARRIER()
# define SW_BARRIER() _ReadWriteBarrier();
# define RW_BARRIER()
# define R_BARRIER()
# define w_BARRIER()
# define SW_BARRIER() _ReadWriteBarrier();
#endif

static inline void aws_atomic_priv_check_order(enum aws_memory_order order) {
Expand Down

0 comments on commit d3e9dbe

Please sign in to comment.