From 04ab7204773fb9e79fa9febd0108cd72a479cbd7 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 11 Jan 2019 03:25:54 +0200 Subject: [PATCH] Disable C4503 on msvc-14.0 in test/mp_for_each.cpp --- test/mp_for_each.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/mp_for_each.cpp b/test/mp_for_each.cpp index d38bee5..9bea05a 100644 --- a/test/mp_for_each.cpp +++ b/test/mp_for_each.cpp @@ -6,10 +6,14 @@ // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt +#include + +#if BOOST_MP11_MSVC +# pragma warning( disable: 4503 ) // decorated name length exceeded +#endif #include #include -#include #include #include #include