Remove unused deprecated includes

A comment in boost/iterator.hpp and boost/detail/iterator.hpp mentions that
the files are obsolete and will be deprecated. All they do is pull some types
from namespace std into namespace boost.
This commit is contained in:
Marcel Raad
2015-09-14 09:34:02 +02:00
committed by Andrey Semashev
parent 011288c2c8
commit 0107df44ab
20 changed files with 58 additions and 57 deletions

View File

@ -32,6 +32,7 @@
#include <vector>
#include <stdlib.h>
#include <set>
#include <iterator>
#if !defined(__SGI_STL_PORT) \
&& (defined(BOOST_MSVC_STD_ITERATOR) \
@ -164,7 +165,7 @@ main()
BOOST_STATIC_ASSERT(
has_element_type<
boost::detail::iterator_traits<shared_t::iterator>::value_type
std::iterator_traits<shared_t::iterator>::value_type
>::value
);