Rename function: collect_duplications -> collect_duplicates

more english correct name
This commit is contained in:
Filip Sykala - NTB T15p 2022-11-29 13:52:47 +01:00
parent d330bbc54b
commit b1f9d50aad
5 changed files with 11 additions and 11 deletions

View file

@ -158,7 +158,7 @@ bool has_duplicate_points(std::vector<Point> &&pts)
return false;
}
Points collect_duplications(Points pts /* Copy */)
Points collect_duplicates(Points pts /* Copy */)
{
std::stable_sort(pts.begin(), pts.end());
Points duplicits;