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@101
|
13 #ifndef BOOST_CONFIG_HPP
|
Chris@16
|
14 #include <boost/config.hpp>
|
Chris@16
|
15 #endif
|
Chris@16
|
16
|
Chris@16
|
17 #ifdef BOOST_MSVC
|
Chris@16
|
18
|
Chris@16
|
19 #pragma warning (push)
|
Chris@16
|
20 //
|
Chris@16
|
21 //'function' : resolved overload was found by argument-dependent lookup
|
Chris@16
|
22 //A function found by argument-dependent lookup (Koenig lookup) was eventually
|
Chris@16
|
23 //chosen by overload resolution.
|
Chris@16
|
24 //
|
Chris@16
|
25 //In Visual C++ .NET and earlier compilers, a different function would have
|
Chris@16
|
26 //been called. To pick the original function, use an explicitly qualified name.
|
Chris@16
|
27 //
|
Chris@16
|
28
|
Chris@16
|
29 //warning C4275: non dll-interface class 'x' used as base for
|
Chris@16
|
30 //dll-interface class 'Y'
|
Chris@16
|
31 #pragma warning (disable : 4275)
|
Chris@16
|
32 //warning C4251: 'x' : class 'y' needs to have dll-interface to
|
Chris@16
|
33 //be used by clients of class 'z'
|
Chris@16
|
34 #pragma warning (disable : 4251)
|
Chris@16
|
35 #pragma warning (disable : 4675)
|
Chris@16
|
36 #pragma warning (disable : 4996)
|
Chris@16
|
37 #pragma warning (disable : 4503)
|
Chris@16
|
38 #pragma warning (disable : 4284) // odd return type for operator->
|
Chris@16
|
39 #pragma warning (disable : 4244) // possible loss of data
|
Chris@16
|
40 #pragma warning (disable : 4521) ////Disable "multiple copy constructors specified"
|
Chris@16
|
41 #pragma warning (disable : 4522)
|
Chris@16
|
42 #pragma warning (disable : 4146)
|
Chris@16
|
43 #pragma warning (disable : 4267) //conversion from 'X' to 'Y', possible loss of data
|
Chris@16
|
44 #pragma warning (disable : 4127) //conditional expression is constant
|
Chris@16
|
45 #pragma warning (disable : 4706) //assignment within conditional expression
|
Chris@16
|
46 #pragma warning (disable : 4541) //'typeid' used on polymorphic type 'boost::exception' with /GR-
|
Chris@16
|
47 #pragma warning (disable : 4512) //'typeid' used on polymorphic type 'boost::exception' with /GR-
|
Chris@16
|
48 #endif
|
Chris@16
|
49
|
Chris@16
|
50 //#define BOOST_INTRUSIVE_USE_ITERATOR_FACADE
|
Chris@16
|
51 //#define BOOST_INTRUSIVE_USE_ITERATOR_ENABLE_IF_CONVERTIBLE
|