Removed #include <utility>.

This commit is contained in:
Andrey Semashev 2022-06-30 23:26:52 +03:00
parent dd37a27067
commit cd24487161

View File

@ -14,10 +14,6 @@
#include <iterator> #include <iterator>
#include <boost/config.hpp> #include <boost/config.hpp>
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
#include <utility>
#endif
namespace boost { namespace boost {
namespace iterators { namespace iterators {
@ -46,7 +42,7 @@ namespace iterators {
} }
#else #else
template <class T> output_proxy& operator=(T&& value) { template <class T> output_proxy& operator=(T&& value) {
m_f(std::forward<T>(value)); m_f(static_cast< T&& >(value));
return *this; return *this;
} }
#endif #endif