123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef BOOST_SMART_PTR_OWNER_LESS_HPP_INCLUDED
- #define BOOST_SMART_PTR_OWNER_LESS_HPP_INCLUDED
- #include <boost/config.hpp>
- namespace boost
- {
- template<class T = void> struct owner_less
- {
- typedef bool result_type;
- typedef T first_argument_type;
- typedef T second_argument_type;
- template<class U, class V> bool operator()( U const & u, V const & v ) const BOOST_NOEXCEPT
- {
- return u.owner_before( v );
- }
- };
- }
- #endif
|