From 417e0db55a1db28a6b1b8ece18a1cc6188fbe96c Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 18 Apr 2019 09:49:00 +0300 Subject: [PATCH] test/mp_for_each: Disable warning 4307 on MSVC --- test/mp_for_each.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/mp_for_each.cpp b/test/mp_for_each.cpp index 9bea05a..1db533e 100644 --- a/test/mp_for_each.cpp +++ b/test/mp_for_each.cpp @@ -10,6 +10,7 @@ #if BOOST_MP11_MSVC # pragma warning( disable: 4503 ) // decorated name length exceeded +# pragma warning( disable: 4307 ) // '*': integral constant overflow #endif #include