Commit 94f1ad6c authored by cremno's avatar cremno

remove unnecessary _WIN32 preprocessor check

SIZE_MAX < UINT32_MAX is false on Win32 / Win64.
parent 87ce13f9
......@@ -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