diff -up ./boost/concept/detail/general.hpp~ ./boost/concept/detail/general.hpp
old
|
new
|
|
6 | 6 | |
7 | 7 | # include <boost/preprocessor/cat.hpp> |
8 | 8 | # include <boost/concept/detail/backward_compatibility.hpp> |
| 9 | # include <boost/static_assert.hpp> |
9 | 10 | |
10 | 11 | # ifdef BOOST_OLD_CONCEPT_SUPPORT |
11 | 12 | # include <boost/concept/detail/has_constraints.hpp> |
… |
… |
struct requirement_<void(*)(Model)>
|
68 | 69 | # define BOOST_CONCEPT_ASSERT_FN( ModelFnPtr ) \ |
69 | 70 | typedef ::boost::concepts::detail::instantiate< \ |
70 | 71 | &::boost::concepts::requirement_<ModelFnPtr>::failed> \ |
71 | | BOOST_PP_CAT(boost_concept_check,__LINE__) |
| 72 | BOOST_PP_CAT(boost_concept_check,__LINE__) \ |
| 73 | BOOST_STATIC_ASSERT_UNUSED_ATTRIBUTE |
72 | 74 | |
73 | 75 | }} |
74 | 76 | |