Chris@16
|
1 //-----------------------------------------------------------------------------
|
Chris@16
|
2 // boost variant/detail/config.hpp header file
|
Chris@16
|
3 // See http://www.boost.org for updates, documentation, and revision history.
|
Chris@16
|
4 //-----------------------------------------------------------------------------
|
Chris@16
|
5 //
|
Chris@16
|
6 // Copyright (c) 2003
|
Chris@16
|
7 // Eric Friedman
|
Chris@16
|
8 //
|
Chris@16
|
9 // Distributed under the Boost Software License, Version 1.0. (See
|
Chris@16
|
10 // accompanying file LICENSE_1_0.txt or copy at
|
Chris@16
|
11 // http://www.boost.org/LICENSE_1_0.txt)
|
Chris@16
|
12
|
Chris@16
|
13 #ifndef BOOST_VARIANT_DETAIL_CONFIG_HPP
|
Chris@16
|
14 #define BOOST_VARIANT_DETAIL_CONFIG_HPP
|
Chris@16
|
15
|
Chris@16
|
16 #include "boost/config.hpp"
|
Chris@16
|
17 #include "boost/detail/workaround.hpp"
|
Chris@16
|
18
|
Chris@16
|
19 ///////////////////////////////////////////////////////////////////////////////
|
Chris@16
|
20 // macro BOOST_VARIANT_AUX_BROKEN_CONSTRUCTOR_TEMPLATE_ORDERING
|
Chris@16
|
21 //
|
Chris@16
|
22 #if BOOST_WORKAROUND(__MWERKS__, <= 0x3201) \
|
Chris@16
|
23 || BOOST_WORKAROUND(BOOST_INTEL, <= 700) \
|
Chris@16
|
24 && !defined(BOOST_VARIANT_AUX_BROKEN_CONSTRUCTOR_TEMPLATE_ORDERING)
|
Chris@16
|
25 # define BOOST_VARIANT_AUX_BROKEN_CONSTRUCTOR_TEMPLATE_ORDERING
|
Chris@16
|
26 #endif
|
Chris@16
|
27
|
Chris@16
|
28 ///////////////////////////////////////////////////////////////////////////////
|
Chris@16
|
29 // macro BOOST_VARIANT_AUX_HAS_CONSTRUCTOR_TEMPLATE_ORDERING_SFINAE_WKND
|
Chris@16
|
30 //
|
Chris@16
|
31 #if !defined(BOOST_NO_SFINAE) \
|
Chris@16
|
32 && !BOOST_WORKAROUND(BOOST_INTEL, <= 700) \
|
Chris@16
|
33 && !defined(BOOST_VARIANT_AUX_HAS_CONSTRUCTOR_TEMPLATE_ORDERING_SFINAE_WKND)
|
Chris@16
|
34 # define BOOST_VARIANT_AUX_HAS_CONSTRUCTOR_TEMPLATE_ORDERING_SFINAE_WKND
|
Chris@16
|
35 #endif
|
Chris@16
|
36
|
Chris@16
|
37 #endif // BOOST_VARIANT_DETAIL_CONFIG_HPP
|