mirror of
https://github.com/boostorg/algorithm.git
synced 2025-06-25 20:11:50 +02:00
Compare commits
8 Commits
boost-1.74
...
boost-1.75
Author | SHA1 | Date | |
---|---|---|---|
ca77e55428 | |||
8c26a50a12 | |||
1e098f39d4 | |||
e4c3628f4d | |||
49d284392c | |||
68100d9198 | |||
1634b819b3 | |||
4547b1a5fe |
@ -9,8 +9,8 @@
|
|||||||
/// \brief Combine the (transformed) elements of a sequence (or two) into a single value.
|
/// \brief Combine the (transformed) elements of a sequence (or two) into a single value.
|
||||||
/// \author Marshall Clow
|
/// \author Marshall Clow
|
||||||
|
|
||||||
#ifndef BOOST_ALGORITHM_TRANSFORM_REDUCE_HPP
|
#ifndef BOOST_ALGORITHM_INCLUSIVE_SCAN_HPP
|
||||||
#define BOOST_ALGORITHM_TRANSFORM_REDUCE_HPP
|
#define BOOST_ALGORITHM_INCLUSIVE_SCAN_HPP
|
||||||
|
|
||||||
#include <functional> // for std::plus
|
#include <functional> // for std::plus
|
||||||
#include <iterator> // for std::iterator_traits
|
#include <iterator> // for std::iterator_traits
|
||||||
@ -58,4 +58,4 @@ OutputIterator inclusive_scan(InputIterator first, InputIterator last,
|
|||||||
|
|
||||||
}} // namespace boost and algorithm
|
}} // namespace boost and algorithm
|
||||||
|
|
||||||
#endif // BOOST_ALGORITHM_TRANSFORM_REDUCE_HPP
|
#endif // BOOST_ALGORITHM_INCLUSIVE_SCAN_HPP
|
||||||
|
@ -15,6 +15,9 @@
|
|||||||
#include <locale>
|
#include <locale>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
|
||||||
|
#include <boost/iterator/transform_iterator.hpp>
|
||||||
|
#include <boost/range/begin.hpp>
|
||||||
|
#include <boost/range/end.hpp>
|
||||||
#include <boost/type_traits/make_unsigned.hpp>
|
#include <boost/type_traits/make_unsigned.hpp>
|
||||||
|
|
||||||
namespace boost {
|
namespace boost {
|
||||||
|
@ -13,10 +13,12 @@
|
|||||||
|
|
||||||
#include <boost/algorithm/string/config.hpp>
|
#include <boost/algorithm/string/config.hpp>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
#include <cstring>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <locale>
|
#include <locale>
|
||||||
|
|
||||||
#include <boost/range/begin.hpp>
|
#include <boost/range/begin.hpp>
|
||||||
|
#include <boost/range/distance.hpp>
|
||||||
#include <boost/range/end.hpp>
|
#include <boost/range/end.hpp>
|
||||||
|
|
||||||
#include <boost/algorithm/string/predicate_facade.hpp>
|
#include <boost/algorithm/string/predicate_facade.hpp>
|
||||||
|
@ -18,6 +18,8 @@
|
|||||||
#include <boost/algorithm/string/detail/find_format_store.hpp>
|
#include <boost/algorithm/string/detail/find_format_store.hpp>
|
||||||
#include <boost/algorithm/string/detail/replace_storage.hpp>
|
#include <boost/algorithm/string/detail/replace_storage.hpp>
|
||||||
|
|
||||||
|
#include <deque>
|
||||||
|
|
||||||
namespace boost {
|
namespace boost {
|
||||||
namespace algorithm {
|
namespace algorithm {
|
||||||
namespace detail {
|
namespace detail {
|
||||||
|
Reference in New Issue
Block a user