From 8ec5d4a3a07fe9a3c556a4abeac6645a7bb2235e Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Tue, 8 Sep 2020 17:33:50 +1000 Subject: Further, minor cleanups to headers post-MakeHeaders Remove leftover empty ifdef/endif pairs, whitespace. The generated htop.h file was also unused - removed. --- Vector.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'Vector.h') diff --git a/Vector.h b/Vector.h index 7d1436aa..32cd809e 100644 --- a/Vector.h +++ b/Vector.h @@ -24,7 +24,6 @@ typedef struct Vector_ { bool owner; } Vector; - Vector* Vector_new(ObjectClass* type, bool owner, int size); void Vector_delete(Vector* this); @@ -37,11 +36,6 @@ int Vector_count(Vector* this); void Vector_prune(Vector* this); -// If I were to use only one sorting algorithm for both cases, it would probably be this one: -/* - -*/ - void Vector_quickSort(Vector* this); void Vector_insertionSort(Vector* this); -- cgit v1.2.3