blob: 094781ed7d010d9fbdf057215194ed7af120c1ce [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_ASSERT_NDNBOOST_DWA2006430_HPP
5# define NDNBOOST_CONCEPT_ASSERT_NDNBOOST_DWA2006430_HPP
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07006
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 Thompson3d613fd2013-10-15 15:39:04 -070018# if !defined(NDNBOOST_NO_OLD_CONCEPT_SUPPORT) \
19 && !defined(NDNBOOST_NO_SFINAE) \
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070020 \
Jeff Thompson3d613fd2013-10-15 15:39:04 -070021 && !(NDNBOOST_WORKAROUND(__GNUC__, == 3) && NDNBOOST_WORKAROUND(__GNUC_MINOR__, < 4)) \
22 && !(NDNBOOST_WORKAROUND(__GNUC__, == 2))
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070023
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 Thompson3d613fd2013-10-15 15:39:04 -070027# define NDNBOOST_OLD_CONCEPT_SUPPORT
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070028
29# endif
30
Jeff Thompson3d613fd2013-10-15 15:39:04 -070031# ifdef NDNBOOST_MSVC
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070032# include <ndnboost/concept/detail/msvc.hpp>
Jeff Thompson3d613fd2013-10-15 15:39:04 -070033# elif NDNBOOST_WORKAROUND(__BORLANDC__, NDNBOOST_TESTED_AT(0x564))
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070034# 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 Thompson3d613fd2013-10-15 15:39:04 -070041 // NDNBOOST_CONCEPT_ASSERT((UnaryFunctionConcept<F,bool,int>));
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070042 //
Jeff Thompson3d613fd2013-10-15 15:39:04 -070043# define NDNBOOST_CONCEPT_ASSERT(ModelInParens) \
44 NDNBOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070045
Jeff Thompson2491bd62013-10-15 17:10:24 -070046#endif // NDNBOOST_CONCEPT_ASSERT_NDNBOOST_DWA2006430_HPP