Skip to content

Commit

Permalink
Fix macos build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
haorldbchi committed Aug 11, 2023
1 parent 324a6c0 commit 7e7d528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/threading/Semaphore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ int Semaphore::GetCount()

return value;
#elif PLATFORM_IS_WINDOWS || PLATFORM_IS_APPLE
return _count.load( std::memory_order::memory_order_release );
return _count.load( std::memory_order_release );
#else
#error Unimplemented
#endif
Expand Down

0 comments on commit 7e7d528

Please sign in to comment.