Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alfred2g committed Feb 26, 2024
1 parent 49ee1ce commit db1def1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/aws/common/atomics_msvc.inl
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ typedef long long aws_atomic_impl_int_t;
# define w_BARRIER() __dmb(_ARM64_BARRIER_ST)
# define SW_BARRIER() _ReadWriteBarrier();
#else
# define RW_BARRIER()
# define R_BARRIER()
# define w_BARRIER()
# define do{RW_BARRIER()}while(0)
# define do{R_BARRIER()}while(0)
# define do{w_BARRIER()}while(0)
# define SW_BARRIER() _ReadWriteBarrier();
#endif

Expand Down

0 comments on commit db1def1

Please sign in to comment.