1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

PAGE_SIZE is never used on msys/mingw

This commit is contained in:
Nobuyoshi Nakada 2021-05-16 18:27:31 +09:00
parent de6e76ff25
commit adafa8105f
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

2
gc.c
View file

@ -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