suppress warnings for Mingw

This commit is contained in:
Recep Aslantas
2018-04-30 11:09:42 +03:00
parent 6c01eff056
commit 94d6036c38

View File

@@ -10,9 +10,13 @@
#if defined( _WIN32 ) #if defined( _WIN32 )
# if (defined(_M_AMD64) || defined(_M_X64)) || _M_IX86_FP == 2 # if (defined(_M_AMD64) || defined(_M_X64)) || _M_IX86_FP == 2
# define __SSE2__ # ifndef __SSE2__
# define __SSE2__
# endif
# elif _M_IX86_FP == 1 # elif _M_IX86_FP == 1
# define __SSE__ # ifndef __SSE__
# define __SSE__
# endif
# endif # endif
#endif #endif