[SVN r82086]
This commit is contained in:
Ion Gaztañaga
2012-12-18 21:09:01 +00:00
parent 6c9288aba5
commit e06d16b6fa
2 changed files with 2 additions and 1 deletions

View File

@@ -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.

View File

@@ -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++()