fixed Visual warning in debug mode

This commit is contained in:
Yann Collet 2016-05-17 14:30:19 +02:00
parent c8e9c4046f
commit 78aa05228a

View File

@ -49,6 +49,9 @@ extern "C" {
/*-****************************************
* Compiler specifics
******************************************/
#if defined(_MSC_VER)
# include <intrin.h> /* _byteswap_ */
#endif
#if defined(__GNUC__)
# define MEM_STATIC static __attribute__((unused))
#elif defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)