From 87f0baff4b182ec4ff910886f549c6854ddd05c9 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Sun, 9 May 2010 01:24:39 +0000 Subject: [PATCH] Merge standards-conformance fixes for Boost.Intrusive [SVN r61866] --- include/boost/intrusive/detail/transform_iterator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/intrusive/detail/transform_iterator.hpp b/include/boost/intrusive/detail/transform_iterator.hpp index a9de49e..15ef3ab 100644 --- a/include/boost/intrusive/detail/transform_iterator.hpp +++ b/include/boost/intrusive/detail/transform_iterator.hpp @@ -46,7 +46,7 @@ struct operator_arrow_proxy // This function is needed for MWCW and BCC, which won't call operator-> // again automatically per 13.3.1.2 para 8 // operator T*() const { return &m_value; } - mutable T &m_value; + T &m_value; }; template