From cb6500161b682a66438604e75ab901c46e42430d Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Fri, 11 Sep 2015 16:28:20 +0200 Subject: [PATCH] Remove deprecated include All that boost/iterator.hpp does is pull std::iterator into namespace boost. A comment in that header mentions: "This header is obsolete and will be deprecated." --- include/boost/operators.hpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/include/boost/operators.hpp b/include/boost/operators.hpp index 82c374e..058796e 100644 --- a/include/boost/operators.hpp +++ b/include/boost/operators.hpp @@ -83,9 +83,10 @@ #define BOOST_OPERATORS_HPP #include -#include #include +#include + #if defined(__sgi) && !defined(__GNUC__) # pragma set woff 1234 #endif @@ -891,13 +892,13 @@ template struct input_iterator_helper : input_iteratable > {}; template struct output_iterator_helper : output_iteratable > { T& operator*() { return static_cast(*this); } @@ -911,7 +912,7 @@ template struct forward_iterator_helper : forward_iteratable > {}; template struct bidirectional_iterator_helper : bidirectional_iteratable > {}; template struct random_access_iterator_helper : random_access_iteratable > { friend D requires_difference_operator(const T& x, const T& y) {