Skip to content

Commit 65cebbd

Browse files
Fix clang-format: restore unmodified files to upstream state
1 parent c99a4d4 commit 65cebbd

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

libs/core/algorithms/include/hpx/parallel/algorithms/detail/is_sorted.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
namespace hpx::parallel::detail {
1515

16-
template <typename Iter, typename Sent,
16+
HPX_CXX_CORE_EXPORT template <typename Iter, typename Sent,
1717
typename Compare, typename Proj = hpx::identity>
1818
constexpr bool is_sorted_sequential(
1919
Iter first, Sent last, Compare&& comp, Proj&& proj = Proj())
@@ -32,7 +32,7 @@ namespace hpx::parallel::detail {
3232
return sorted;
3333
}
3434

35-
template <typename Iter, typename Sent,
35+
HPX_CXX_CORE_EXPORT template <typename Iter, typename Sent,
3636
typename Compare, typename Proj = hpx::identity>
3737
constexpr Iter is_sorted_until_sequential(
3838
Iter first, Sent last, Compare&& comp, Proj&& proj = Proj())

libs/core/algorithms/include/hpx/parallel/container_algorithms/is_partitioned.hpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -297,9 +297,9 @@ namespace hpx::ranges {
297297
)
298298
// clang-format on
299299
friend typename parallel::util::detail::algorithm_result<ExPolicy,
300-
bool>::type tag_fallback_invoke(hpx::ranges::is_partitioned_t,
301-
ExPolicy&& policy, FwdIter first, Sent last, Pred pred,
302-
Proj proj = Proj())
300+
bool>::type
301+
tag_fallback_invoke(hpx::ranges::is_partitioned_t, ExPolicy&& policy,
302+
FwdIter first, Sent last, Pred pred, Proj proj = Proj())
303303
{
304304
return hpx::parallel::detail::is_partitioned<FwdIter, Sent>().call(
305305
HPX_FORWARD(ExPolicy, policy), first, last, HPX_MOVE(pred),
@@ -325,8 +325,8 @@ namespace hpx::ranges {
325325

326326
return hpx::parallel::detail::is_partitioned<iterator_type,
327327
iterator_type>()
328-
.call(hpx::execution::seq, hpx::util::begin(rng),
329-
hpx::util::end(rng), HPX_MOVE(pred), HPX_MOVE(proj));
328+
.call(hpx::execution::seq, std::begin(rng), std::end(rng),
329+
HPX_MOVE(pred), HPX_MOVE(proj));
330330
}
331331

332332
template <typename ExPolicy, typename Rng, typename Pred,
@@ -351,8 +351,8 @@ namespace hpx::ranges {
351351

352352
return hpx::parallel::detail::is_partitioned<iterator_type,
353353
iterator_type>()
354-
.call(HPX_FORWARD(ExPolicy, policy), hpx::util::begin(rng),
355-
hpx::util::end(rng), HPX_MOVE(pred), HPX_MOVE(proj));
354+
.call(HPX_FORWARD(ExPolicy, policy), std::begin(rng),
355+
std::end(rng), HPX_MOVE(pred), HPX_MOVE(proj));
356356
}
357357
} is_partitioned{};
358358
} // namespace hpx::ranges

libs/core/algorithms/include/hpx/parallel/container_algorithms/is_sorted.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -656,9 +656,9 @@ namespace hpx::ranges {
656656
)
657657
// clang-format on
658658
friend hpx::parallel::util::detail::algorithm_result_t<ExPolicy,
659-
FwdIter> tag_fallback_invoke(hpx::ranges::is_sorted_until_t,
660-
ExPolicy&& policy, FwdIter first, Sent last, Pred pred = Pred(),
661-
Proj proj = Proj())
659+
FwdIter>
660+
tag_fallback_invoke(hpx::ranges::is_sorted_until_t, ExPolicy&& policy,
661+
FwdIter first, Sent last, Pred pred = Pred(), Proj proj = Proj())
662662
{
663663
return hpx::parallel::detail::is_sorted_until<FwdIter, Sent>().call(
664664
HPX_FORWARD(ExPolicy, policy), first, last, HPX_MOVE(pred),

0 commit comments

Comments
 (0)