Skip to content
Snippets Groups Projects
Commit b33a27ca authored by Tom Fischer's avatar Tom Fischer
Browse files

Removed second template parameter since it is not necessary anymore.

parent 688ca056
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,7 @@ void PointVec::makePntsUnique (std::vector<GeoLib::Point*>* pnt_vec,
}
// sort the points
BaseLib::Quicksort<GeoLib::Point*, std::size_t> (*pnt_vec, 0, n_pnts_in_file, perm);
BaseLib::Quicksort<GeoLib::Point*> (*pnt_vec, 0, n_pnts_in_file, perm);
// unfortunately quicksort is not stable -
// sort identical points by id - to make sorting stable
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment