diff --git a/reference.htm b/reference.htm index 7c113e6..ae8d502 100644 --- a/reference.htm +++ b/reference.htm @@ -366,6 +366,12 @@ template <class Concept> void function_requires(); +

function_requires() has been deprecated in favor of BOOST_CONCEPT_ASSERT. + This means that function_requires< Concept >(); + becomes BOOST_CONCEPT_ASSERT((Concept)); + (don't forget to #include "boost/concept/assert.hpp"). + +

Deprecated Macros