Skip to content

Commit aba2785

Browse files
Apply clang-format
1 parent 4e02198 commit aba2785

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

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

Lines changed: 3 additions & 3 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
301-
tag_fallback_invoke(hpx::ranges::is_partitioned_t, ExPolicy&& policy,
302-
FwdIter first, Sent last, Pred pred, Proj proj = Proj())
300+
bool>::type tag_fallback_invoke(hpx::ranges::is_partitioned_t,
301+
ExPolicy&& policy, FwdIter first, Sent last, Pred pred,
302+
Proj proj = Proj())
303303
{
304304
return hpx::parallel::detail::is_partitioned<FwdIter, Sent>().call(
305305
HPX_FORWARD(ExPolicy, policy), first, last, HPX_MOVE(pred),

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
@@ -657,9 +657,9 @@ namespace hpx::ranges {
657657
)
658658
// clang-format on
659659
friend hpx::parallel::util::detail::algorithm_result_t<ExPolicy,
660-
FwdIter>
661-
tag_fallback_invoke(hpx::ranges::is_sorted_until_t, ExPolicy&& policy,
662-
FwdIter first, Sent last, Pred pred = Pred(), Proj proj = Proj())
660+
FwdIter> tag_fallback_invoke(hpx::ranges::is_sorted_until_t,
661+
ExPolicy&& policy, FwdIter first, Sent last, Pred pred = Pred(),
662+
Proj proj = Proj())
663663
{
664664
return hpx::parallel::detail::is_sorted_until<FwdIter, Sent>().call(
665665
HPX_FORWARD(ExPolicy, policy), first, last, HPX_MOVE(pred),

0 commit comments

Comments
 (0)