Skip to content

Commit

Permalink
fix compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
alfred2g committed Feb 26, 2024
1 parent ee6c614 commit 49ee1ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/aws/common/atomics_msvc.inl
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ typedef long long aws_atomic_impl_int_t;

#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 R_BARRIER() __dmb(_ARM64_BARRIER_LD)
# define w_BARRIER() __dmb(_ARM64_BARRIER_ST)
# define SW_BARRIER() _ReadWriteBarrier();
#else
# define RW_BARRIER()
Expand Down

0 comments on commit 49ee1ce

Please sign in to comment.