Skip to content
Snippets Groups Projects
Verified Commit df1dca90 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

C++20 modernization: use std::ranges::sort

parent a687398e
Branches
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ IntSequence::less(const IntSequence& s) const
void
IntSequence::sort()
{
std::sort(data, data + length);
std::ranges::sort(data, data + length);
}
void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment