mirror of
https://github.com/boostorg/iterator.git
synced 2025-05-09 23:23:54 +00:00
Removed #include <utility>.
This commit is contained in:
parent
dd37a27067
commit
cd24487161
@ -14,10 +14,6 @@
|
||||
#include <iterator>
|
||||
#include <boost/config.hpp>
|
||||
|
||||
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
|
||||
#include <utility>
|
||||
#endif
|
||||
|
||||
namespace boost {
|
||||
namespace iterators {
|
||||
|
||||
@ -46,7 +42,7 @@ namespace iterators {
|
||||
}
|
||||
#else
|
||||
template <class T> output_proxy& operator=(T&& value) {
|
||||
m_f(std::forward<T>(value));
|
||||
m_f(static_cast< T&& >(value));
|
||||
return *this;
|
||||
}
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user