From 849e2d3e5c57d827a66b098935f2a3873bb028c5 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Thu, 22 Aug 2024 22:31:36 -0700 Subject: [PATCH] Remove unused code --- SkipList.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/SkipList.cpp b/SkipList.cpp index 41979b3..faa36fb 100644 --- a/SkipList.cpp +++ b/SkipList.cpp @@ -115,15 +115,6 @@ bool operator==(const KeyInfo &lhs, const KeyInfo &rhs) { return !(lhs < rhs || rhs < lhs); } -void swapSort(std::vector &points, int a, int b) { - if (points[b] < points[a]) { - KeyInfo temp; - temp = points[a]; - points[a] = points[b]; - points[b] = temp; - } -} - struct SortTask { int begin; int size;