mirror of
https://github.com/boostorg/container.git
synced 2025-08-02 22:14:26 +02:00
@@ -616,6 +616,7 @@ use [*Boost.Container]? There are several reasons for that:
|
|||||||
|
|
||||||
[section:release_notes_boost_1_53_00 Boost 1.53 Release]
|
[section:release_notes_boost_1_53_00 Boost 1.53 Release]
|
||||||
|
|
||||||
|
* Fixed bug [@https://svn.boost.org/trac/boost/ticket/7650 #7650].
|
||||||
* Improved `vector`'s insertion performance.
|
* Improved `vector`'s insertion performance.
|
||||||
* Changed again experimental multiallocation interface for better performance (still experimental).
|
* Changed again experimental multiallocation interface for better performance (still experimental).
|
||||||
* Added no exception support for those willing to disable exceptions in their compilers.
|
* Added no exception support for those willing to disable exceptions in their compilers.
|
||||||
|
@@ -119,7 +119,7 @@ class list_const_iterator
|
|||||||
{ return this->m_it->m_data; }
|
{ return this->m_it->m_data; }
|
||||||
|
|
||||||
const_pointer operator->() const
|
const_pointer operator->() const
|
||||||
{ return ::boost::intrusive::pointer_traits<const_pointer>::to_pointer(this->m_it->m_data); }
|
{ return ::boost::intrusive::pointer_traits<const_pointer>::pointer_to(this->m_it->m_data); }
|
||||||
|
|
||||||
//Increment / Decrement
|
//Increment / Decrement
|
||||||
list_const_iterator& operator++()
|
list_const_iterator& operator++()
|
||||||
|
Reference in New Issue
Block a user