$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r82085 - in trunk: boost/container libs/container/doc
From: igaztanaga_at_[hidden]
Date: 2012-12-18 16:07:55
Author: igaztanaga
Date: 2012-12-18 16:07:54 EST (Tue, 18 Dec 2012)
New Revision: 82085
URL: http://svn.boost.org/trac/boost/changeset/82085
Log:
Bug #7650
Text files modified: 
   trunk/boost/container/list.hpp         |     2 +-                                      
   trunk/libs/container/doc/container.qbk |     1 +                                       
   2 files changed, 2 insertions(+), 1 deletions(-)
Modified: trunk/boost/container/list.hpp
==============================================================================
--- trunk/boost/container/list.hpp	(original)
+++ trunk/boost/container/list.hpp	2012-12-18 16:07:54 EST (Tue, 18 Dec 2012)
@@ -119,7 +119,7 @@
    { return this->m_it->m_data;  }
 
    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
    list_const_iterator& operator++()      
Modified: trunk/libs/container/doc/container.qbk
==============================================================================
--- trunk/libs/container/doc/container.qbk	(original)
+++ trunk/libs/container/doc/container.qbk	2012-12-18 16:07:54 EST (Tue, 18 Dec 2012)
@@ -616,6 +616,7 @@
 
 [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.
 *  Changed again experimental multiallocation interface for better performance (still experimental).
 *  Added no exception support for those willing to disable exceptions in their compilers.