mirror of
https://github.com/boostorg/intrusive.git
synced 2025-05-11 13:13:57 +00:00
Boost 1.40 changes
[SVN r54339]
This commit is contained in:
parent
7f6921c717
commit
ccd4975b46
@ -3703,6 +3703,15 @@ all the objects to be inserted in intrusive containers in containers like `std::
|
|||||||
|
|
||||||
[section:release_notes Release Notes]
|
[section:release_notes Release Notes]
|
||||||
|
|
||||||
|
[section:release_notes_boost_1_40_00 Boost 1.40 Release]
|
||||||
|
|
||||||
|
* Code cleanup in tree_algorithms.hpp and avl_tree_algorithms.hpp
|
||||||
|
* Fixed bug
|
||||||
|
[@https://svn.boost.org/trac/boost/ticket/3164 #3164].
|
||||||
|
|
||||||
|
[endsect]
|
||||||
|
|
||||||
|
|
||||||
[section:release_notes_boost_1_39_00 Boost 1.39 Release]
|
[section:release_notes_boost_1_39_00 Boost 1.39 Release]
|
||||||
|
|
||||||
* Optimized `list::merge` and `slist::merge`
|
* Optimized `list::merge` and `slist::merge`
|
||||||
|
@ -34,7 +34,7 @@ class MyClass : public avl_set_base_hook<optimize_size<true> >
|
|||||||
friend bool operator> (const MyClass &a, const MyClass &b)
|
friend bool operator> (const MyClass &a, const MyClass &b)
|
||||||
{ return a.int_ > b.int_; }
|
{ return a.int_ > b.int_; }
|
||||||
friend bool operator== (const MyClass &a, const MyClass &b)
|
friend bool operator== (const MyClass &a, const MyClass &b)
|
||||||
{ return a.int_ < b.int_; }
|
{ return a.int_ == b.int_; }
|
||||||
};
|
};
|
||||||
|
|
||||||
//Define an avl_set using the base hook that will store values in reverse order
|
//Define an avl_set using the base hook that will store values in reverse order
|
||||||
|
@ -34,7 +34,7 @@ class MyClass : public set_base_hook<optimize_size<true> >
|
|||||||
friend bool operator> (const MyClass &a, const MyClass &b)
|
friend bool operator> (const MyClass &a, const MyClass &b)
|
||||||
{ return a.int_ > b.int_; }
|
{ return a.int_ > b.int_; }
|
||||||
friend bool operator== (const MyClass &a, const MyClass &b)
|
friend bool operator== (const MyClass &a, const MyClass &b)
|
||||||
{ return a.int_ < b.int_; }
|
{ return a.int_ == b.int_; }
|
||||||
};
|
};
|
||||||
|
|
||||||
//Define a set using the base hook that will store values in reverse order
|
//Define a set using the base hook that will store values in reverse order
|
||||||
|
@ -33,7 +33,7 @@ class MyClass : public bs_set_base_hook<>
|
|||||||
friend bool operator> (const MyClass &a, const MyClass &b)
|
friend bool operator> (const MyClass &a, const MyClass &b)
|
||||||
{ return a.int_ > b.int_; }
|
{ return a.int_ > b.int_; }
|
||||||
friend bool operator== (const MyClass &a, const MyClass &b)
|
friend bool operator== (const MyClass &a, const MyClass &b)
|
||||||
{ return a.int_ < b.int_; }
|
{ return a.int_ == b.int_; }
|
||||||
};
|
};
|
||||||
|
|
||||||
//Define an sg_set using the base hook that will store values in reverse order
|
//Define an sg_set using the base hook that will store values in reverse order
|
||||||
|
@ -36,7 +36,7 @@ class MyClass
|
|||||||
friend bool operator> (const MyClass &a, const MyClass &b)
|
friend bool operator> (const MyClass &a, const MyClass &b)
|
||||||
{ return a.int_ > b.int_; }
|
{ return a.int_ > b.int_; }
|
||||||
friend bool operator== (const MyClass &a, const MyClass &b)
|
friend bool operator== (const MyClass &a, const MyClass &b)
|
||||||
{ return a.int_ < b.int_; }
|
{ return a.int_ == b.int_; }
|
||||||
};
|
};
|
||||||
|
|
||||||
//Define a set using the base hook that will store values in reverse order
|
//Define a set using the base hook that will store values in reverse order
|
||||||
|
@ -132,6 +132,7 @@ int main( int, char* [] )
|
|||||||
test_main_template<boost::intrusive::smart_ptr<void>, false>()();
|
test_main_template<boost::intrusive::smart_ptr<void>, false>()();
|
||||||
test_main_template<void*, true>()();
|
test_main_template<void*, true>()();
|
||||||
test_main_template<boost::intrusive::smart_ptr<void>, true>()();
|
test_main_template<boost::intrusive::smart_ptr<void>, true>()();
|
||||||
|
|
||||||
return boost::report_errors();
|
return boost::report_errors();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user