diff options
author | Nobuyoshi Nakada <[email protected]> | 2021-05-16 18:27:31 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-05-16 18:27:47 +0900 |
commit | adafa8105f58bddc05a6ca12314890e07cbf5f5b (patch) | |
tree | cd8d0f5f79ae4c7a8e35e2477f2ae0bfc7fd4886 /gc.c | |
parent | de6e76ff25d9dd33a13f06111514bcac869f4830 (diff) |
PAGE_SIZE is never used on msys/mingw
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -871,7 +871,7 @@ static const bool USE_MMAP_ALIGNED_ALLOC = true; static bool use_mmap_aligned_alloc; # endif -#else +#elif !defined(__MINGW32__) && !defined(_WIN32) static const bool USE_MMAP_ALIGNED_ALLOC = false; #endif |