Fix declared SortKey type of impl<..> SortKeyComputer for (HeadSortKeyComputer, TailSortKeyComputer)

This commit is contained in:
Stu Hood
2025-12-10 15:46:51 -08:00
parent 0e7484cfa6
commit fe7a56e92d

View File

@@ -144,10 +144,7 @@ where
HeadSortKeyComputer: SortKeyComputer,
TailSortKeyComputer: SortKeyComputer,
{
type SortKey = (
<HeadSortKeyComputer::Child as SegmentSortKeyComputer>::SortKey,
<TailSortKeyComputer::Child as SegmentSortKeyComputer>::SortKey,
);
type SortKey = (HeadSortKeyComputer::SortKey, TailSortKeyComputer::SortKey);
type Child = (HeadSortKeyComputer::Child, TailSortKeyComputer::Child);
type Comparator = (