Skip to content

Commit

Permalink
Fix ABSL_WAITER_MODE detection for mingw
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsylve committed Jul 8, 2019
1 parent 74d9175 commit 46efbba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion absl/synchronization/internal/waiter.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

#if defined(ABSL_FORCE_WAITER_MODE)
#define ABSL_WAITER_MODE ABSL_FORCE_WAITER_MODE
#elif defined(_WIN32)
#elif defined(_WIN32) && _WIN32_WINNT >= 0x0600
#define ABSL_WAITER_MODE ABSL_WAITER_MODE_WIN32
#elif defined(__linux__)
#define ABSL_WAITER_MODE ABSL_WAITER_MODE_FUTEX
Expand Down

0 comments on commit 46efbba

Please sign in to comment.