blob: 0fc96d501bcc213bde1e1cfd87e9bd893e982fed [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001// Copyright David Abrahams 2006. Distributed under the Boost
2// Software License, Version 1.0. (See accompanying
3// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Jeff Thompson2491bd62013-10-15 17:10:24 -07004#ifndef NDNBOOST_CONCEPT_DETAIL_HAS_CONSTRAINTS_NDNBOOST_DWA2006429_HPP
5# define NDNBOOST_CONCEPT_DETAIL_HAS_CONSTRAINTS_NDNBOOST_DWA2006429_HPP
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07006
7# include <ndnboost/mpl/bool.hpp>
8# include <ndnboost/detail/workaround.hpp>
9# include <ndnboost/concept/detail/backward_compatibility.hpp>
10
11namespace ndnboost { namespace concepts {
12
13namespace detail
14{
15
16// Here we implement the metafunction that detects whether a
17// constraints metafunction exists
18 typedef char yes;
19 typedef char (&no)[2];
20
21 template <class Model, void (Model::*)()>
22 struct wrap_constraints {};
23
Jeff Thompson3d613fd2013-10-15 15:39:04 -070024#if NDNBOOST_WORKAROUND(__SUNPRO_CC, <= 0x580) || defined(__CUDACC__)
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070025 // Work around the following bogus error in Sun Studio 11, by
26 // turning off the has_constraints function entirely:
27 // Error: complex expression not allowed in dependent template
28 // argument expression
29 inline no has_constraints_(...);
30#else
31 template <class Model>
32 inline yes has_constraints_(Model*, wrap_constraints<Model,&Model::constraints>* = 0);
33 inline no has_constraints_(...);
34#endif
35}
36
37// This would be called "detail::has_constraints," but it has a strong
38// tendency to show up in error messages.
39template <class Model>
40struct not_satisfied
41{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070042 NDNBOOST_STATIC_CONSTANT(
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070043 bool
44 , value = sizeof( detail::has_constraints_((Model*)0) ) == sizeof(detail::yes) );
45 typedef mpl::bool_<value> type;
46};
47
48}} // namespace ndnboost::concepts::detail
49
Jeff Thompson2491bd62013-10-15 17:10:24 -070050#endif // NDNBOOST_CONCEPT_DETAIL_HAS_CONSTRAINTS_NDNBOOST_DWA2006429_HPP