Brian Silverman | 407d3cd | 2018-08-04 17:48:52 -0700 | [diff] [blame^] | 1 | // (C) Copyright Beman Dawes 2000. Distributed under the Boost |
| 2 | // Software License, Version 1.0. (See accompanying file |
| 3 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 4 | |
| 5 | #ifndef BOOST_ITERATOR_HPP |
| 6 | #define BOOST_ITERATOR_HPP |
| 7 | |
| 8 | // This header is obsolete and will be deprecated. |
| 9 | |
| 10 | #include <iterator> |
| 11 | #include <cstddef> // std::ptrdiff_t |
| 12 | |
| 13 | namespace boost |
| 14 | { |
| 15 | |
| 16 | using std::iterator; |
| 17 | |
| 18 | } // namespace boost |
| 19 | |
| 20 | #endif // BOOST_ITERATOR_HPP |