Modernize std::unique with ranges

The new return value is `std::ranges::subrange`.
This commit is contained in:
mitaclaw 2024-09-28 20:19:03 -07:00
parent be0b13da97
commit 5f3a8ff0de
2 changed files with 4 additions and 2 deletions

View file

@ -129,7 +129,8 @@ BuildExpression(const std::vector<ciface::Core::DeviceContainer::InputDetection>
// Remove duplicates
std::ranges::sort(alternations);
alternations.erase(std::unique(alternations.begin(), alternations.end()), alternations.end());
const auto unique_result = std::ranges::unique(alternations);
alternations.erase(unique_result.begin(), unique_result.end());
return fmt::to_string(fmt::join(alternations, "|"));
}