blob: 2b041abab0f99936b63ae368ad3d10c7d58a2b80 [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001// (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)
Jeff Thompson3d613fd2013-10-15 15:39:04 -07007#ifndef NDNBOOST_ENABLE_IF_23022003THW_HPP
8#define NDNBOOST_ENABLE_IF_23022003THW_HPP
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07009
10#include <ndnboost/detail/workaround.hpp>
11#include <ndnboost/mpl/identity.hpp>
12
13#include <ndnboost/iterator/detail/config_def.hpp>
14
15//
16// Boost iterators uses its own enable_if cause we need
17// special semantics for deficient compilers.
18// 23/02/03 thw
19//
20
21namespace ndnboost
22{
23
24 namespace iterators
25 {
26 //
27 // Base machinery for all kinds of enable if
28 //
29 template<bool>
30 struct enabled
31 {
32 template<typename T>
33 struct base
34 {
35 typedef T type;
36 };
37 };
38
39 //
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.
43 //
44 template<>
45 struct enabled<false>
46 {
47 template<typename T>
48 struct base
49 {
Jeff Thompson3d613fd2013-10-15 15:39:04 -070050#ifdef NDNBOOST_NO_SFINAE
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070051
52 typedef T type;
53
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.
57 //
58 // struct invalid_overload;
59 // typedef invalid_overload type;
60 //
61#endif
62 };
63 };
64
65
66 template <class Cond,
67 class Return>
68 struct enable_if
Jeff Thompson3d613fd2013-10-15 15:39:04 -070069# if !defined(NDNBOOST_NO_SFINAE) && !defined(NDNBOOST_NO_IS_CONVERTIBLE)
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070070 : enabled<(Cond::value)>::template base<Return>
71# else
72 : mpl::identity<Return>
73# endif
74 {
Jeff Thompson3d613fd2013-10-15 15:39:04 -070075# if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, < 1300)
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070076 typedef Return type;
77# endif
78 };
79
80 } // namespace iterators
81
82} // namespace ndnboost
83
84#include <ndnboost/iterator/detail/config_undef.hpp>
85
Jeff Thompson3d613fd2013-10-15 15:39:04 -070086#endif // NDNBOOST_ENABLE_IF_23022003THW_HPP