]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/icl/test/disable_test_warnings.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / icl / test / disable_test_warnings.hpp
1 /*-----------------------------------------------------------------------------+
2 Copyright (c) 2008-2009: Joachim Faulhaber
3 +------------------------------------------------------------------------------+
4 Distributed under the Boost Software License, Version 1.0.
5 (See accompanying file LICENCE.txt or copy at
6 http://www.boost.org/LICENSE_1_0.txt)
7 +-----------------------------------------------------------------------------*/
8 #ifndef BOOST_ICL_DETAIL_DISABLE_TEST_WARNINGS_HPP_JOFA_101031
9 #define BOOST_ICL_DETAIL_DISABLE_TEST_WARNINGS_HPP_JOFA_101031
10
11 #include <boost/icl/detail/boost_config.hpp>
12 #include <boost/detail/workaround.hpp>
13
14 #ifdef BOOST_MSVC // These warnings are disabled permanently for tests.
15 #pragma warning(disable:4996) // Function call with parameters that may be unsafe
16 #pragma warning(disable:4503) // decorated name length exceeded, name was truncated
17 #pragma warning(disable:4702) // unreachable code
18 #endif
19
20
21 #endif // BOOST_ICL_DETAIL_DISABLE_TEST_WARNINGS_HPP_JOFA_101031
22