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

remove unnecessary _WIN32 preprocessor check
This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-11-25 12:09:39 +09:00
+1 -1
View File
@@ -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