Skip to content

Commit 58b8b8f

Browse files
Apply clang-format to projection support files
1 parent e588d25 commit 58b8b8f

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

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

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

1414
namespace hpx::parallel::detail {
1515

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

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

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),

0 commit comments

Comments
 (0)