annotate DEPENDENCIES/generic/include/boost/intrusive/detail/config_begin.hpp @ 16:2665513ce2d3

Add boost headers
author Chris Cannam
date Tue, 05 Aug 2014 11:11:38 +0100
parents
children c530137014c0
rev   line source
Chris@16 1 /////////////////////////////////////////////////////////////////////////////
Chris@16 2 //
Chris@16 3 // (C) Copyright Ion Gaztanaga 2006-2013
Chris@16 4 //
Chris@16 5 // Distributed under the Boost Software License, Version 1.0.
Chris@16 6 // (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 7 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 8 //
Chris@16 9 // See http://www.boost.org/libs/intrusive for documentation.
Chris@16 10 //
Chris@16 11 /////////////////////////////////////////////////////////////////////////////
Chris@16 12
Chris@16 13 #ifndef BOOST_INTRUSIVE_CONFIG_INCLUDED
Chris@16 14 #define BOOST_INTRUSIVE_CONFIG_INCLUDED
Chris@16 15 #include <boost/config.hpp>
Chris@16 16 #endif
Chris@16 17
Chris@16 18 #ifdef BOOST_MSVC
Chris@16 19
Chris@16 20 #pragma warning (push)
Chris@16 21 //
Chris@16 22 //'function' : resolved overload was found by argument-dependent lookup
Chris@16 23 //A function found by argument-dependent lookup (Koenig lookup) was eventually
Chris@16 24 //chosen by overload resolution.
Chris@16 25 //
Chris@16 26 //In Visual C++ .NET and earlier compilers, a different function would have
Chris@16 27 //been called. To pick the original function, use an explicitly qualified name.
Chris@16 28 //
Chris@16 29
Chris@16 30 //warning C4275: non dll-interface class 'x' used as base for
Chris@16 31 //dll-interface class 'Y'
Chris@16 32 #pragma warning (disable : 4275)
Chris@16 33 //warning C4251: 'x' : class 'y' needs to have dll-interface to
Chris@16 34 //be used by clients of class 'z'
Chris@16 35 #pragma warning (disable : 4251)
Chris@16 36 #pragma warning (disable : 4675)
Chris@16 37 #pragma warning (disable : 4996)
Chris@16 38 #pragma warning (disable : 4503)
Chris@16 39 #pragma warning (disable : 4284) // odd return type for operator->
Chris@16 40 #pragma warning (disable : 4244) // possible loss of data
Chris@16 41 #pragma warning (disable : 4521) ////Disable "multiple copy constructors specified"
Chris@16 42 #pragma warning (disable : 4522)
Chris@16 43 #pragma warning (disable : 4146)
Chris@16 44 #pragma warning (disable : 4267) //conversion from 'X' to 'Y', possible loss of data
Chris@16 45 #pragma warning (disable : 4127) //conditional expression is constant
Chris@16 46 #pragma warning (disable : 4706) //assignment within conditional expression
Chris@16 47 #pragma warning (disable : 4541) //'typeid' used on polymorphic type 'boost::exception' with /GR-
Chris@16 48 #pragma warning (disable : 4512) //'typeid' used on polymorphic type 'boost::exception' with /GR-
Chris@16 49 #endif
Chris@16 50
Chris@16 51 //#define BOOST_INTRUSIVE_USE_ITERATOR_FACADE
Chris@16 52 //#define BOOST_INTRUSIVE_USE_ITERATOR_ENABLE_IF_CONVERTIBLE