diff options
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmzlib/zutil.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Utilities/cmzlib/zutil.h b/Utilities/cmzlib/zutil.h index b7d5eff..3341e7c 100644 --- a/Utilities/cmzlib/zutil.h +++ b/Utilities/cmzlib/zutil.h @@ -163,6 +163,12 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ # endif #endif +#if defined(_MSC_VER) +#pragma warning ( disable : 4127 ) /* cond expr is constant */ +#pragma warning ( disable : 4131 ) /* old style declaration */ +#pragma warning ( disable : 4244 ) /* conversion loss of data */ +#endif + /* common defaults */ #ifndef OS_CODE |