Home | History | Annotate | Download | only in concept

Lines Matching refs:model

15 #  define BOOST_CONCEPT_USAGE(model) ~model()
19 template <class Model>
22 ~usage_requirements() { ((Model*)0)->~Model(); }
27 # define BOOST_CONCEPT_USAGE(model) \
28 model(); /* at least 2.96 and 3.4.3 both need this :( */ \
29 BOOST_CONCEPT_ASSERT((boost::concepts::usage_requirements<model>)); \
30 ~model()
34 # define BOOST_CONCEPT_USAGE(model) \
35 BOOST_CONCEPT_ASSERT((boost::concepts::usage_requirements<model>)); \
36 ~model()