|
||||
File indexing completed on 2025-01-18 09:38:19
0001 /*-----------------------------------------------------------------------------+ 0002 Copyright (c) 2010-2010: Joachim Faulhaber 0003 +------------------------------------------------------------------------------+ 0004 Distributed under the Boost Software License, Version 1.0. 0005 (See accompanying file LICENCE.txt or copy at 0006 http://www.boost.org/LICENSE_1_0.txt) 0007 +-----------------------------------------------------------------------------*/ 0008 #ifndef BOOST_ICL_DETAIL_BOOST_CONFIG_HPP_JOFA_101031 0009 #define BOOST_ICL_DETAIL_BOOST_CONFIG_HPP_JOFA_101031 0010 0011 // Since boost_1_44_0 boost/config.hpp can produce warnings too. 0012 #ifdef _MSC_VER 0013 #pragma warning(push) 0014 #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' 0015 #endif 0016 0017 #include <boost/config.hpp> 0018 0019 #ifdef _MSC_VER 0020 #pragma warning(pop) 0021 #endif 0022 0023 0024 #endif 0025 0026
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |