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_TEST_UNIT_TEST_UNWARNED_HPP_JOFA_091204 9 #define BOOST_ICL_TEST_UNIT_TEST_UNWARNED_HPP_JOFA_091204 10 11 #include <boost/icl/detail/boost_config.hpp> 12 #include <boost/detail/workaround.hpp> 13 14 #ifdef BOOST_MSVC 15 #pragma warning(push) 16 #pragma warning(disable:4389) // boost/test/test_tools.hpp(509) : warning C4389: '==' : signed/unsigned mismatch 17 #pragma warning(disable:4996) // 'std::_Traits_helper::copy_s': Function call with parameters that may be unsafe 18 #endif 19 20 #include <boost/test/unit_test.hpp> 21 22 #ifdef BOOST_MSVC 23 #pragma warning(pop) 24 #endif 25 26 27 #endif // BOOST_ICL_TEST_UNIT_TEST_UNWARNED_HPP_JOFA_091204 28 29