zlib: disable warning 4142 on MSVC

This is about benign redefinition of types. We're not interested in it.
This commit is contained in:
Carlos Martín Nieto 2014-06-11 18:22:46 +02:00
parent 4f8ac2163b
commit b42ff7c016

1
deps/zlib/zconf.h vendored
View File

@ -14,6 +14,7 @@
* forms, we didn't write zlib */
#if defined(_MSC_VER)
# pragma warning( disable : 4131 )
# pragma warning( disable : 4142 ) /* benign redefinition of type */
#endif
/* Maximum value for memLevel in deflateInit2 */