Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/range/traversal.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 | f46d142149f5 |
| children |
| rev | line source |
|---|---|
| Chris@102 | 1 // Boost.Range library |
| Chris@102 | 2 // |
| Chris@102 | 3 // Copyright Neil Groves 2014. Use, modification and |
| Chris@102 | 4 // distribution is subject to the Boost Software License, Version |
| Chris@102 | 5 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
| Chris@102 | 6 // http://www.boost.org/LICENSE_1_0.txt) |
| Chris@102 | 7 // |
| Chris@102 | 8 // For more information, see http://www.boost.org/libs/range/ |
| Chris@102 | 9 // |
| Chris@102 | 10 |
| Chris@102 | 11 #ifndef BOOST_RANGE_TRAVERSAL_HPP |
| Chris@102 | 12 #define BOOST_RANGE_TRAVERSAL_HPP |
| Chris@102 | 13 |
| Chris@102 | 14 #if defined(_MSC_VER) |
| Chris@102 | 15 # pragma once |
| Chris@102 | 16 #endif |
| Chris@102 | 17 |
| Chris@102 | 18 #include <boost/range/config.hpp> |
| Chris@102 | 19 #include <boost/range/iterator.hpp> |
| Chris@102 | 20 #include <boost/iterator/iterator_traits.hpp> |
| Chris@102 | 21 |
| Chris@102 | 22 namespace boost |
| Chris@102 | 23 { |
| Chris@102 | 24 template<typename SinglePassRange> |
| Chris@102 | 25 struct range_traversal |
| Chris@102 | 26 : iterator_traversal<typename range_iterator<SinglePassRange>::type> |
| Chris@102 | 27 { |
| Chris@102 | 28 }; |
| Chris@102 | 29 } |
| Chris@102 | 30 |
| Chris@102 | 31 #endif |
