fix doc example typo
[boost.git] / boost / concept / usage.hpp
blob9af8ca3cc232c3c82354b686e734be9b7b74eebd
1 // 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)
4 #ifndef BOOST_CONCEPT_USAGE_DWA2006919_HPP
5 # define BOOST_CONCEPT_USAGE_DWA2006919_HPP
7 # include <boost/concept/assert.hpp>
8 # include <boost/detail/workaround.hpp>
10 namespace boost { namespace concept {
12 # if BOOST_WORKAROUND(__GNUC__, == 2)
14 # define BOOST_CONCEPT_USAGE(model) ~model()
16 # else
18 template <class Model>
19 struct usage_requirements
21 ~usage_requirements() { ((Model*)0)->~Model(); }
24 # if BOOST_WORKAROUND(__GNUC__, <= 3)
26 # define BOOST_CONCEPT_USAGE(model) \
27 model(); /* at least 2.96 and 3.4.3 both need this :( */ \
28 BOOST_CONCEPT_ASSERT((boost::concept::usage_requirements<model>)); \
29 ~model()
31 # else
33 # define BOOST_CONCEPT_USAGE(model) \
34 BOOST_CONCEPT_ASSERT((boost::concept::usage_requirements<model>)); \
35 ~model()
37 # endif
39 # endif
41 }} // namespace boost::concept
43 #endif // BOOST_CONCEPT_USAGE_DWA2006919_HPP