Skip to content

Commit

Permalink
tryp-to-fix clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
schaumb committed Dec 11, 2024
1 parent d08012a commit cfb881f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/base/alg/merge.h
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ template <class Proj1 = std::identity,
class Transform2 = std::identity,
class NeedMerge = always,
class Merge = get_first>
struct args
struct merge_args
{
[[no_unique_address]] Proj1 projection_1{};
[[no_unique_address]] Proj2 projection_2{};
Expand Down Expand Up @@ -201,7 +201,7 @@ constexpr std::ranges::in_in_out_result<It1, It2, Out> merge(
It2 first2,
End2 last2,
Out result,
args<Proj1,
merge_args<Proj1,
Proj2,
Proj,
Comp,
Expand Down Expand Up @@ -259,7 +259,7 @@ constexpr std::ranges::in_in_out_result<
merge(R1 &&range1,
R2 &&range2,
Out &&result,
args<Args...> &&args = {})
merge_args<Args...> &&args = {})
{
if constexpr (std::weakly_incrementable<
std::remove_cvref_t<Out>>) {
Expand All @@ -282,7 +282,7 @@ merge(R1 &&range1,
}

using Merge::merge;
template <class... Args> using merge_args = Merge::args<Args...>;
using Merge::merge_args;

}

Expand Down

0 comments on commit cfb881f

Please sign in to comment.