fix doc example typo
[boost.git] / boost / iterator / detail / enable_if.hpp
blob0fd36fc4bc3a2e2e6abef93f494d441469656908
1 // (C) Copyright David Abrahams 2002.
2 // (C) Copyright Jeremy Siek 2002.
3 // (C) Copyright Thomas Witt 2002.
4 // Distributed under the Boost Software License, Version 1.0. (See
5 // accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
7 #ifndef BOOST_ENABLE_IF_23022003THW_HPP
8 #define BOOST_ENABLE_IF_23022003THW_HPP
10 #include <boost/detail/workaround.hpp>
11 #include <boost/mpl/identity.hpp>
13 #include <boost/iterator/detail/config_def.hpp>
16 // Boost iterators uses its own enable_if cause we need
17 // special semantics for deficient compilers.
18 // 23/02/03 thw
21 namespace boost
24 namespace iterators
27 // Base machinery for all kinds of enable if
29 template<bool>
30 struct enabled
32 template<typename T>
33 struct base
35 typedef T type;
40 // For compilers that don't support "Substitution Failure Is Not An Error"
41 // enable_if falls back to always enabled. See comments
42 // on operator implementation for consequences.
44 template<>
45 struct enabled<false>
47 template<typename T>
48 struct base
50 #ifdef BOOST_NO_SFINAE
52 typedef T type;
54 // This way to do it would give a nice error message containing
55 // invalid overload, but has the big disadvantage that
56 // there is no reference to user code in the error message.
58 // struct invalid_overload;
59 // typedef invalid_overload type;
61 #endif
66 template <class Cond,
67 class Return>
68 struct enable_if
69 # if !defined(BOOST_NO_SFINAE) && !defined(BOOST_NO_IS_CONVERTIBLE)
70 : enabled<(Cond::value)>::template base<Return>
71 # else
72 : mpl::identity<Return>
73 # endif
75 # if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
76 typedef Return type;
77 # endif
80 } // namespace iterators
82 } // namespace boost
84 #include <boost/iterator/detail/config_undef.hpp>
86 #endif // BOOST_ENABLE_IF_23022003THW_HPP