123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef BOOST_CONCEPT_ASSERT_DWA2006430_HPP
- # define BOOST_CONCEPT_ASSERT_DWA2006430_HPP
- # include <boost/config.hpp>
- # include <boost/config/workaround.hpp>
- # if !defined(BOOST_NO_OLD_CONCEPT_SUPPORT) \
- && !defined(BOOST_NO_SFINAE) \
- \
- && !(BOOST_WORKAROUND(__GNUC__, == 3) && BOOST_WORKAROUND(__GNUC_MINOR__, < 4))
- # define BOOST_OLD_CONCEPT_SUPPORT
- # endif
- # ifdef BOOST_MSVC
- # include <boost/concept/detail/msvc.hpp>
- # elif BOOST_WORKAROUND(BOOST_BORLANDC, BOOST_TESTED_AT(0x564))
- # include <boost/concept/detail/borland.hpp>
- # else
- # include <boost/concept/detail/general.hpp>
- # endif
-
-
-
-
- # define BOOST_CONCEPT_ASSERT(ModelInParens) \
- BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
- #endif
|