Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
2 #ifndef BOOST_MPL_AUX_NA_HPP_INCLUDED
3 #define BOOST_MPL_AUX_NA_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_/na.hpp,v $
14 // $Date: 2004/11/28 01:37:30 $
17 #include <boost/mpl/bool.hpp>
18 #include <boost/mpl/aux_/na_fwd.hpp>
19 #include <boost/mpl/aux_/config/msvc.hpp>
20 #include <boost/mpl/aux_/config/ctps.hpp>
22 namespace boost { namespace mpl {
24 template< typename T >
28 #if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
37 #if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
42 template< typename T >
46 #if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
55 #if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
60 #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
61 template< typename T, typename U > struct if_na
66 template< typename U > struct if_na<na,U>
71 template< typename T > struct if_na_impl
73 template< typename U > struct apply
79 template<> struct if_na_impl<na>
81 template< typename U > struct apply
87 template< typename T, typename U > struct if_na
88 : if_na_impl<T>::template apply<U>
95 #endif // BOOST_MPL_AUX_NA_HPP_INCLUDED