mirror of
https://github.com/boostorg/iterator.git
synced 2025-05-11 21:43:54 +00:00
Removed #include <utility>.
This commit is contained in:
parent
dd37a27067
commit
cd24487161
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user