Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/detail/iterator.hpp @ 133:4acb5d8d80b6 tip
Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author | Chris Cannam |
---|---|
date | Tue, 30 Jul 2019 12:25:44 +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_ |