From 038d1497c93e54e810c6d7bfcb85a8a025b78af5 Mon Sep 17 00:00:00 2001 From: inikep Date: Wed, 10 Aug 2016 14:30:10 +0200 Subject: [PATCH] fixed compilation with Visual Studio 2005 --- lib/decompress/zstd_decompress.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/decompress/zstd_decompress.c b/lib/decompress/zstd_decompress.c index 958d63692..052ccd601 100644 --- a/lib/decompress/zstd_decompress.c +++ b/lib/decompress/zstd_decompress.c @@ -77,6 +77,7 @@ # include /* For Visual 2005 */ # pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */ # pragma warning(disable : 4324) /* disable: C4324: padded structure */ +# pragma warning(disable : 4100) /* disable: C4100: unreferenced formal parameter */ #else # ifdef __GNUC__ # define FORCE_INLINE static inline __attribute__((always_inline))