Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
2 #ifndef BOOST_MPL_AUX_MSVC_ETI_BASE_HPP_INCLUDED
3 #define BOOST_MPL_AUX_MSVC_ETI_BASE_HPP_INCLUDED
5 // Copyright Aleksey Gurtovoy 2001-2004
7 // Distributed under the Boost Software License, Version 1.0.
8 // (See accompanying file LICENSE_1_0.txt or copy at
9 // http://www.boost.org/LICENSE_1_0.txt)
11 // See http://www.boost.org/libs/mpl for documentation.
13 // $Source: /cvsroot/boost/boost/boost/mpl/aux_/msvc_eti_base.hpp,v $
14 // $Date: 2004/11/28 01:37:05 $
17 #include <boost/mpl/aux_/is_msvc_eti_arg.hpp>
18 #include <boost/mpl/aux_/config/eti.hpp>
19 #include <boost/mpl/aux_/config/gcc.hpp>
20 #include <boost/mpl/aux_/config/workaround.hpp>
22 namespace boost { namespace mpl { namespace aux {
24 #if defined(BOOST_MPL_CFG_MSVC_70_ETI_BUG)
26 template< bool > struct msvc_eti_base_impl
28 template< typename T > struct result_
35 template<> struct msvc_eti_base_impl<true>
37 template< typename T > struct result_
40 typedef result_ first;
41 typedef result_ second;
47 template< typename T > struct msvc_eti_base
48 : msvc_eti_base_impl< is_msvc_eti_arg<T>::value >
53 #else // !BOOST_MPL_CFG_MSVC_70_ETI_BUG
55 template< typename T > struct msvc_eti_base
58 #if BOOST_WORKAROUND(BOOST_MPL_CFG_GCC, BOOST_TESTED_AT(0x0304))
66 template<> struct msvc_eti_base<int>
68 typedef msvc_eti_base type;
69 typedef msvc_eti_base first;
70 typedef msvc_eti_base second;
71 typedef msvc_eti_base tag;
77 #endif // BOOST_MPL_AUX_MSVC_ETI_BASE_HPP_INCLUDED