1
0
forked from boostorg/mp11

Disable C4503 on msvc-14.0 in test/mp_for_each.cpp

This commit is contained in:
Peter Dimov
2019-01-11 03:25:54 +02:00
parent ab1debb839
commit 04ab720477

View File

@@ -6,10 +6,14 @@
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
#include <boost/mp11/detail/config.hpp>
#if BOOST_MP11_MSVC
# pragma warning( disable: 4503 ) // decorated name length exceeded
#endif
#include <boost/mp11/algorithm.hpp>
#include <boost/mp11/list.hpp>
#include <boost/mp11/detail/config.hpp>
#include <boost/core/lightweight_test.hpp>
#include <tuple>
#include <cstdint>