Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/mir/series.d
Original file line number Diff line number Diff line change
Expand Up @@ -2511,9 +2511,9 @@ private auto unionSeriesImplPrivate(bool rc, IndexIterator, Iterator, size_t N,
static if (C == 2) // fast path
{
alias algo = troykaSeriesImpl!(
ref (scope ref key, scope return ref left) => left,
ref (scope ref key, scope return ref left, scope return ref right) => left,
ref (scope ref key, scope return ref right) => right,
(scope ref key, scope return ref left) => left,
(scope ref key, scope return ref left, scope return ref right) => left,
(scope ref key, scope return ref right) => right,
);
algo!(I, E)(seriesTuple[0], seriesTuple[1], ret.lightScope);
}
Expand Down