mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
fix isolated files
This commit is contained in:
parent
f45298f81f
commit
7f8a352783
27 changed files with 270 additions and 55 deletions
|
@ -5,8 +5,8 @@
|
|||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
=============================================================================*/
|
||||
#ifndef SPROUT_ALGORITHM_FIT_RESULT_OF_HPP
|
||||
#define SPROUT_ALGORITHM_FIT_RESULT_OF_HPP
|
||||
#ifndef SPROUT_ALGORITHM_FIT_RESULTS_HPP
|
||||
#define SPROUT_ALGORITHM_FIT_RESULTS_HPP
|
||||
|
||||
#include <type_traits>
|
||||
#include <sprout/config.hpp>
|
||||
|
@ -36,4 +36,4 @@ namespace sprout {
|
|||
} // namespace fit
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_ALGORITHM_FIT_RESULT_OF_HPP
|
||||
#endif // #ifndef SPROUT_ALGORITHM_FIT_RESULTS_HPP
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
=============================================================================*/
|
||||
#ifndef SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP
|
||||
#define SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP
|
||||
#ifndef SPROUT_ALGORITHM_FIXED_RESULTS_HPP
|
||||
#define SPROUT_ALGORITHM_FIXED_RESULTS_HPP
|
||||
|
||||
#include <type_traits>
|
||||
#include <sprout/config.hpp>
|
||||
|
@ -45,4 +45,4 @@ namespace sprout {
|
|||
} // namespace results
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP
|
||||
#endif // #ifndef SPROUT_ALGORITHM_FIXED_RESULTS_HPP
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
#include <sprout/iterator/type_traits/category.hpp>
|
||||
#include <sprout/range/adaptor/size_enumed.hpp>
|
||||
#include <sprout/range/algorithm/lower_bound.hpp>
|
||||
#include <sprout/range/numeric/partial_sum.hpp>
|
||||
#include <sprout/range/numeric/fixed/partial_sum.hpp>
|
||||
#include <sprout/type_traits/integral_constant.hpp>
|
||||
#include <sprout/type_traits/is_c_str.hpp>
|
||||
|
||||
|
@ -144,7 +144,7 @@ namespace sprout {
|
|||
return sprout::algorithm::detail::join_impl_ra_1<Result>(
|
||||
sprout::begin(cont_cont),
|
||||
sprout::container_indexes<Result>::make(),
|
||||
sprout::range::partial_sum(
|
||||
sprout::range::fixed::partial_sum(
|
||||
cont_cont | sprout::adaptors::size_enumed,
|
||||
sprout::pit<sizes_type>()
|
||||
)
|
||||
|
@ -324,7 +324,7 @@ namespace sprout {
|
|||
sprout::begin(cont_cont),
|
||||
sprout::begin(separator),
|
||||
sprout::container_indexes<Result>::make(),
|
||||
sprout::range::partial_sum(
|
||||
sprout::range::fixed::partial_sum(
|
||||
cont_cont | sprout::adaptors::size_enumed(sprout::algorithm::detail::str_size(separator), true),
|
||||
sprout::pit<sizes_type>()
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue