From 8360babe8720a3461d9663b79d230bb62e6487a6 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 16 May 2023 20:29:42 +0300 Subject: [PATCH] Disable msvc-14.0 warning in mp_repeat_3.cpp. --- test/mp_repeat_3.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/mp_repeat_3.cpp b/test/mp_repeat_3.cpp index 7733d6b..12f2c97 100644 --- a/test/mp_repeat_3.cpp +++ b/test/mp_repeat_3.cpp @@ -2,6 +2,12 @@ // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt +#include + +#if BOOST_MP11_MSVC +# pragma warning( disable: 4503 ) // decorated name length exceeded +#endif + #include #include #include