1 /*-----------------------------------------------------------------------------+ 2 Copyright (c) 2010-2010: 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_BOOST_CONFIG_HPP_JOFA_101031 9 #define BOOST_ICL_DETAIL_BOOST_CONFIG_HPP_JOFA_101031 10 11 // Since boost_1_44_0 boost/config.hpp can produce warnings too. 12 #ifdef _MSC_VER 13 #pragma warning(push) 14 #pragma warning(disable:4996) // Function call with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++ 'Checked Iterators' 15 #endif 16 17 #include <boost/config.hpp> 18 19 #ifdef _MSC_VER 20 #pragma warning(pop) 21 #endif 22 23 24 #endif 25 26 27