From ba311e69cfb75ca0c24ce859992e13be9abf3a54 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Thu, 29 Apr 2010 00:35:20 +0000 Subject: [PATCH] Mutable references are ill-formed. Remove a sporadic "mutable". [SVN r61664] --- 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