annotate DEPENDENCIES/generic/include/boost/range/algorithm_ext.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 2665513ce2d3
children
rev   line source
Chris@16 1 // Boost.Range library
Chris@16 2 //
Chris@16 3 // Copyright Neil Groves 2007. Use, modification and
Chris@16 4 // distribution is subject to the Boost Software License, Version
Chris@16 5 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 6 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 7 //
Chris@16 8 // Copyright Thorsten Ottosen 2006. Use, modification and
Chris@16 9 // distribution is subject to the Boost Software License, Version
Chris@16 10 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 11 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 12 //
Chris@16 13 // For more information, see http://www.boost.org/libs/range/
Chris@16 14 //
Chris@16 15 #ifndef BOOST_RANGE_ALGORITHM_EXT_HPP
Chris@16 16 #define BOOST_RANGE_ALGORITHM_EXT_HPP
Chris@16 17
Chris@16 18 #include <boost/range/algorithm_ext/copy_n.hpp>
Chris@16 19 #include <boost/range/algorithm_ext/for_each.hpp>
Chris@16 20 #include <boost/range/algorithm_ext/is_sorted.hpp>
Chris@16 21 #include <boost/range/algorithm_ext/iota.hpp>
Chris@16 22 #include <boost/range/algorithm_ext/overwrite.hpp>
Chris@16 23 #include <boost/range/algorithm_ext/push_back.hpp>
Chris@16 24 #include <boost/range/algorithm_ext/push_front.hpp>
Chris@16 25 #include <boost/range/algorithm_ext/insert.hpp>
Chris@16 26 #include <boost/range/algorithm_ext/erase.hpp>
Chris@16 27
Chris@16 28 #endif