Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 1 | // 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 Thompson | 2491bd6 | 2013-10-15 17:10:24 -0700 | [diff] [blame] | 4 | #ifndef NDNBOOST_CONCEPT_DETAIL_HAS_CONSTRAINTS_NDNBOOST_DWA2006429_HPP |
| 5 | # define NDNBOOST_CONCEPT_DETAIL_HAS_CONSTRAINTS_NDNBOOST_DWA2006429_HPP |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 6 | |
| 7 | # include <ndnboost/mpl/bool.hpp> |
| 8 | # include <ndnboost/detail/workaround.hpp> |
| 9 | # include <ndnboost/concept/detail/backward_compatibility.hpp> |
| 10 | |
| 11 | namespace ndnboost { namespace concepts { |
| 12 | |
| 13 | namespace 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 Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 24 | #if NDNBOOST_WORKAROUND(__SUNPRO_CC, <= 0x580) || defined(__CUDACC__) |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 25 | // 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. |
| 39 | template <class Model> |
| 40 | struct not_satisfied |
| 41 | { |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 42 | NDNBOOST_STATIC_CONSTANT( |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 43 | 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 Thompson | 2491bd6 | 2013-10-15 17:10:24 -0700 | [diff] [blame] | 50 | #endif // NDNBOOST_CONCEPT_DETAIL_HAS_CONSTRAINTS_NDNBOOST_DWA2006429_HPP |