Mutable references are ill-formed. Remove a sporadic "mutable".

[SVN r61664]
This commit is contained in:
Douglas Gregor
2010-04-29 00:35:20 +00:00
parent 7290a9a8b3
commit ba311e69cf

View File

@@ -46,7 +46,7 @@ struct operator_arrow_proxy<T&>
// 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 <class Iterator, class UnaryFunction>