Revert "Fix topological sort: Add reverse"
This reverts commit 97fde27f60
.
This commit is contained in:
parent
318ae061ba
commit
3426a2fce6
1 changed files with 2 additions and 2 deletions
|
@ -306,9 +306,9 @@ consteval auto TopologicalSort(const DependencyGraph<DependencyGraphElement<Name
|
||||||
response.Push(v);
|
response.Push(v);
|
||||||
}(i);
|
}(i);
|
||||||
};
|
};
|
||||||
return (std::move(response.data) | utempl::Map([](auto&& data){
|
return utempl::Map(std::move(response.data), [](auto&& data){
|
||||||
return *data;
|
return *data;
|
||||||
}) | utempl::Reverse())();
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue