Commit 0a8e8bd0 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2653 from cremno/remove-unnecessary-_win32-preprocessor-check

remove unnecessary _WIN32 preprocessor check
parents 87ce13f9 94f1ad6c
......@@ -19,7 +19,7 @@
#define FLAG_SRC_MALLOC 1
#define FLAG_SRC_STATIC 0
#if !defined(_WIN32) && SIZE_MAX < UINT32_MAX
#if SIZE_MAX < UINT32_MAX
# define SIZE_ERROR_MUL(x, y) ((x) > SIZE_MAX / (y))
# define SIZE_ERROR(x) ((x) > SIZE_MAX)
#else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment