fix doc example typo
[boost.git] / boost / type_traits / add_reference.hpp
blob7dfb4bed89e7dea8414775593595b68fc13e2379
2 // (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
3 // Use, modification and distribution are subject to the Boost Software License,
4 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt).
6 //
7 // See http://www.boost.org/libs/type_traits for most recent version including documentation.
9 #ifndef BOOST_TT_ADD_REFERENCE_HPP_INCLUDED
10 #define BOOST_TT_ADD_REFERENCE_HPP_INCLUDED
12 #include <boost/type_traits/is_reference.hpp>
13 #include <boost/detail/workaround.hpp>
14 #include <boost/config.hpp>
16 // should be the last #include
17 #include <boost/type_traits/detail/type_trait_def.hpp>
19 namespace boost {
21 namespace detail {
23 #if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && defined(BOOST_MSVC6_MEMBER_TEMPLATES)
25 template <bool x>
26 struct reference_adder
28 template <typename T> struct result_
30 typedef T& type;
34 template <>
35 struct reference_adder<true>
37 template <typename T> struct result_
39 typedef T type;
43 template <typename T>
44 struct add_reference_impl
46 typedef typename reference_adder<
47 ::boost::is_reference<T>::value
48 >::template result_<T> result;
50 typedef typename result::type type;
53 #else
55 template <typename T>
56 struct add_reference_impl
58 typedef T& type;
61 #ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
62 BOOST_TT_AUX_TYPE_TRAIT_IMPL_PARTIAL_SPEC1_1(typename T,add_reference,T&,T&)
63 #endif
65 #endif
67 // these full specialisations are always required:
68 BOOST_TT_AUX_TYPE_TRAIT_IMPL_SPEC1(add_reference,void,void)
69 #ifndef BOOST_NO_CV_VOID_SPECIALIZATIONS
70 BOOST_TT_AUX_TYPE_TRAIT_IMPL_SPEC1(add_reference,void const,void const)
71 BOOST_TT_AUX_TYPE_TRAIT_IMPL_SPEC1(add_reference,void volatile,void volatile)
72 BOOST_TT_AUX_TYPE_TRAIT_IMPL_SPEC1(add_reference,void const volatile,void const volatile)
73 #endif
75 } // namespace detail
77 BOOST_TT_AUX_TYPE_TRAIT_DEF1(add_reference,T,typename boost::detail::add_reference_impl<T>::type)
79 // agurt, 07/mar/03: workaround Borland's ill-formed sensitivity to an additional
80 // level of indirection, here
81 #if BOOST_WORKAROUND(__BORLANDC__, < 0x600)
82 BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_1(typename T,add_reference,T&,T&)
83 #endif
85 } // namespace boost
87 #include <boost/type_traits/detail/type_trait_undef.hpp>
89 #endif // BOOST_TT_ADD_REFERENCE_HPP_INCLUDED