mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-02-04 21:33:56 +00:00
fix detail/* directory structures.
This commit is contained in:
parent
1636398742
commit
c6fb8af0c5
16 changed files with 24 additions and 24 deletions
|
@ -7,7 +7,7 @@
|
|||
#include <sprout/algorithm/fixed/partition_copy.hpp>
|
||||
#include <sprout/algorithm/fit/result_of.hpp>
|
||||
#include <sprout/sub_array.hpp>
|
||||
#include <sprout/detail/count_n_if.hpp>
|
||||
#include <sprout/detail/algorithm/count_n_if.hpp>
|
||||
#include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT
|
||||
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <sprout/algorithm/fixed/set_difference.hpp>
|
||||
#include <sprout/algorithm/fit/result_of.hpp>
|
||||
#include <sprout/sub_array.hpp>
|
||||
#include <sprout/detail/set_overlap_count.hpp>
|
||||
#include <sprout/detail/algorithm/set_overlap_count.hpp>
|
||||
#include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT
|
||||
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <sprout/algorithm/fixed/set_intersection.hpp>
|
||||
#include <sprout/algorithm/fit/result_of.hpp>
|
||||
#include <sprout/sub_array.hpp>
|
||||
#include <sprout/detail/set_overlap_count.hpp>
|
||||
#include <sprout/detail/algorithm/set_overlap_count.hpp>
|
||||
#include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT
|
||||
|
||||
namespace sprout {
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <sprout/algorithm/fixed/set_symmetric_difference.hpp>
|
||||
#include <sprout/algorithm/fit/result_of.hpp>
|
||||
#include <sprout/sub_array.hpp>
|
||||
#include <sprout/detail/set_overlap_count.hpp>
|
||||
#include <sprout/detail/algorithm/set_overlap_count.hpp>
|
||||
#include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT
|
||||
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <sprout/algorithm/fixed/set_union.hpp>
|
||||
#include <sprout/algorithm/fit/result_of.hpp>
|
||||
#include <sprout/sub_array.hpp>
|
||||
#include <sprout/detail/set_overlap_count.hpp>
|
||||
#include <sprout/detail/algorithm/set_overlap_count.hpp>
|
||||
#include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT
|
||||
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <sprout/algorithm/fixed/unique.hpp>
|
||||
#include <sprout/algorithm/fit/result_of.hpp>
|
||||
#include <sprout/sub_array.hpp>
|
||||
#include <sprout/detail/overlap_count.hpp>
|
||||
#include <sprout/detail/algorithm/overlap_count.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace fit {
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <sprout/algorithm/fixed/unique_copy.hpp>
|
||||
#include <sprout/algorithm/fit/result_of.hpp>
|
||||
#include <sprout/sub_array.hpp>
|
||||
#include <sprout/detail/overlap_count.hpp>
|
||||
#include <sprout/detail/algorithm/overlap_count.hpp>
|
||||
#include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT
|
||||
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef SPROUT_DETAIL_COUNT_N_HPP
|
||||
#define SPROUT_DETAIL_COUNT_N_HPP
|
||||
#ifndef SPROUT_DETAIL_ALGORITHM_COUNT_N_HPP
|
||||
#define SPROUT_DETAIL_ALGORITHM_COUNT_N_HPP
|
||||
|
||||
#include <iterator>
|
||||
#include <sprout/config.hpp>
|
||||
|
@ -24,4 +24,4 @@ namespace sprout {
|
|||
} // namespace detail
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_DETAIL_COUNT_N_HPP
|
||||
#endif // #ifndef SPROUT_DETAIL_ALGORITHM_COUNT_N_HPP
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef SPROUT_DETAIL_COUNT_N_IF_HPP
|
||||
#define SPROUT_DETAIL_COUNT_N_IF_HPP
|
||||
#ifndef SPROUT_DETAIL_ALGORITHM_COUNT_N_IF_HPP
|
||||
#define SPROUT_DETAIL_ALGORITHM_COUNT_N_IF_HPP
|
||||
|
||||
#include <iterator>
|
||||
#include <sprout/config.hpp>
|
||||
|
@ -24,4 +24,4 @@ namespace sprout {
|
|||
} // namespace detail
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_DETAIL_COUNT_N_IF_HPP
|
||||
#endif // #ifndef SPROUT_DETAIL_ALGORITHM_COUNT_N_IF_HPP
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef SPROUT_DETAIL_OVERLAP_COUNT_HPP
|
||||
#define SPROUT_DETAIL_OVERLAP_COUNT_HPP
|
||||
#ifndef SPROUT_DETAIL_ALGORITHM_OVERLAP_COUNT_HPP
|
||||
#define SPROUT_DETAIL_ALGORITHM_OVERLAP_COUNT_HPP
|
||||
|
||||
#include <iterator>
|
||||
#include <sprout/config.hpp>
|
||||
|
@ -70,4 +70,4 @@ namespace sprout {
|
|||
} // namespace detail
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_DETAIL_OVERLAP_COUNT_HPP
|
||||
#endif // #ifndef SPROUT_DETAIL_ALGORITHM_OVERLAP_COUNT_HPP
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef SPROUT_DETAIL_SET_OVERLAP_COUNT_HPP
|
||||
#define SPROUT_DETAIL_SET_OVERLAP_COUNT_HPP
|
||||
#ifndef SPROUT_DETAIL_ALGORITHM_SET_OVERLAP_COUNT_HPP
|
||||
#define SPROUT_DETAIL_ALGORITHM_SET_OVERLAP_COUNT_HPP
|
||||
|
||||
#include <iterator>
|
||||
#include <sprout/config.hpp>
|
||||
|
@ -51,4 +51,4 @@ namespace sprout {
|
|||
} // namespace detail
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_DETAIL_SET_OVERLAP_COUNT_HPP
|
||||
#endif // #ifndef SPROUT_DETAIL_ALGORITHM_SET_OVERLAP_COUNT_HPP
|
|
@ -269,7 +269,7 @@ namespace sprout {
|
|||
// binder
|
||||
//
|
||||
template<typename Signature>
|
||||
struct binder;
|
||||
class binder;
|
||||
template<typename Functor, typename... BoundArgs>
|
||||
class binder<Functor(BoundArgs...)>
|
||||
: public sprout::weak_result_type<Functor>
|
||||
|
@ -379,7 +379,7 @@ namespace sprout {
|
|||
// bind_result
|
||||
//
|
||||
template<typename Result, typename Signature>
|
||||
struct bind_result;
|
||||
class bind_result;
|
||||
template<typename Result, typename Functor, typename... BoundArgs>
|
||||
class bind_result<Result, Functor(BoundArgs...)> {
|
||||
private:
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
#include <sprout/string/string.hpp>
|
||||
#include <sprout/type_traits/enabler_if.hpp>
|
||||
#include <sprout/detail/char_conversion.hpp>
|
||||
#include <sprout/detail/int.hpp>
|
||||
#include <sprout/detail/float.hpp>
|
||||
#include <sprout/detail/math/int.hpp>
|
||||
#include <sprout/detail/math/float.hpp>
|
||||
#include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT
|
||||
|
||||
namespace sprout {
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include <sprout/integer/integer_digits.hpp>
|
||||
#include <sprout/type_traits/enabler_if.hpp>
|
||||
#include <sprout/detail/char_conversion.hpp>
|
||||
#include <sprout/detail/int.hpp>
|
||||
#include <sprout/detail/math/int.hpp>
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
|
|
Loading…
Add table
Reference in a new issue