annotate DEPENDENCIES/generic/include/boost/detail/iterator.hpp @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 // (C) Copyright David Abrahams 2002.
Chris@16 2 // Distributed under the Boost Software License, Version 1.0. (See
Chris@16 3 // accompanying file LICENSE_1_0.txt or copy at
Chris@16 4 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 5
Chris@101 6 #ifndef ITERATOR_DWA122600_HPP_
Chris@101 7 #define ITERATOR_DWA122600_HPP_
Chris@16 8
Chris@101 9 // This header is obsolete and will be deprecated.
Chris@16 10
Chris@101 11 #include <iterator>
Chris@16 12
Chris@101 13 namespace boost
Chris@101 14 {
Chris@16 15
Chris@101 16 namespace detail
Chris@101 17 {
Chris@16 18
Chris@101 19 using std::iterator_traits;
Chris@16 20 using std::distance;
Chris@16 21
Chris@101 22 } // namespace detail
Chris@16 23
Chris@101 24 } // namespace boost
Chris@16 25
Chris@16 26 #endif // ITERATOR_DWA122600_HPP_