From db1447b2cf327a7126c09efe7077bf748b57e60f Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 25 Feb 2020 10:31:14 -0500 Subject: bzip2: Disable MSVC warnings in 3rd party code In commit 35acaa90c5 (bzip2: Add compilation flags to disable warnings in third-party code, 2020-02-24) we forgot to disable warnings for MSVC. --- Utilities/cmbzip2/bzlib_private.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Utilities/cmbzip2/bzlib_private.h b/Utilities/cmbzip2/bzlib_private.h index 3755a6f..ba0f589 100644 --- a/Utilities/cmbzip2/bzlib_private.h +++ b/Utilities/cmbzip2/bzlib_private.h @@ -32,7 +32,9 @@ #include "bzlib.h" - +#if defined(_MSC_VER) +# pragma warning(push,1) +#endif /*-- General stuff. --*/ -- cgit v0.12