From c72b23df5474ec1b29bdd63c3e98cfbc432c0a46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 11 Feb 2013 09:47:06 +0000 Subject: [PATCH] Fixes #7921 [SVN r82812] --- include/boost/container/slist.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/container/slist.hpp b/include/boost/container/slist.hpp index 39bf0c2..a9a4f67 100644 --- a/include/boost/container/slist.hpp +++ b/include/boost/container/slist.hpp @@ -169,7 +169,7 @@ class slist_iterator { return this->m_it->m_data; } pointer operator->() const - { return ::boost::intrusive::pointer_traits::to_pointer(this->m_it->m_data); } + { return ::boost::intrusive::pointer_traits::pointer_to(this->m_it->m_data); } //Increment / Decrement slist_iterator& operator++()