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_ASSERT_NDNBOOST_DWA2006430_HPP |
| 5 | # define NDNBOOST_CONCEPT_ASSERT_NDNBOOST_DWA2006430_HPP |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 6 | |
| 7 | # include <ndnboost/config.hpp> |
| 8 | # include <ndnboost/detail/workaround.hpp> |
| 9 | |
| 10 | // The old protocol used a constraints() member function in concept |
| 11 | // checking classes. If the compiler supports SFINAE, we can detect |
| 12 | // that function and seamlessly support the old concept checking |
| 13 | // classes. In this release, backward compatibility with the old |
| 14 | // concept checking classes is enabled by default, where available. |
| 15 | // The old protocol is deprecated, though, and backward compatibility |
| 16 | // will no longer be the default in the next release. |
| 17 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 18 | # if !defined(NDNBOOST_NO_OLD_CONCEPT_SUPPORT) \ |
| 19 | && !defined(NDNBOOST_NO_SFINAE) \ |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 20 | \ |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 21 | && !(NDNBOOST_WORKAROUND(__GNUC__, == 3) && NDNBOOST_WORKAROUND(__GNUC_MINOR__, < 4)) \ |
| 22 | && !(NDNBOOST_WORKAROUND(__GNUC__, == 2)) |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 23 | |
| 24 | // Note: gcc-2.96 through 3.3.x have some SFINAE, but no ability to |
| 25 | // check for the presence of particularmember functions. |
| 26 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 27 | # define NDNBOOST_OLD_CONCEPT_SUPPORT |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 28 | |
| 29 | # endif |
| 30 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 31 | # ifdef NDNBOOST_MSVC |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 32 | # include <ndnboost/concept/detail/msvc.hpp> |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 33 | # elif NDNBOOST_WORKAROUND(__BORLANDC__, NDNBOOST_TESTED_AT(0x564)) |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 34 | # include <ndnboost/concept/detail/borland.hpp> |
| 35 | # else |
| 36 | # include <ndnboost/concept/detail/general.hpp> |
| 37 | # endif |
| 38 | |
| 39 | // Usage, in class or function context: |
| 40 | // |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 41 | // NDNBOOST_CONCEPT_ASSERT((UnaryFunctionConcept<F,bool,int>)); |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 42 | // |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 43 | # define NDNBOOST_CONCEPT_ASSERT(ModelInParens) \ |
| 44 | NDNBOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens) |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 45 | |
Jeff Thompson | 2491bd6 | 2013-10-15 17:10:24 -0700 | [diff] [blame] | 46 | #endif // NDNBOOST_CONCEPT_ASSERT_NDNBOOST_DWA2006430_HPP |