From c05e484ea0bbcf857fbd6c4a694e5e6a457b39b1 Mon Sep 17 00:00:00 2001 From: Richard Thier Date: Sat, 1 Jul 2023 04:53:42 +0200 Subject: [PATCH] interestingly the code I marked "rotten" might actually work lol --- thiersort.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thiersort.h b/thiersort.h index 56341a1..4ad8dc0 100644 --- a/thiersort.h +++ b/thiersort.h @@ -630,7 +630,7 @@ static inline void ts_quicksort_fromto( const TSU32 bi, void *reent_data), void *reent_data) { - // FIXME: Code is rotten here - see above variant pls! + // TODO: Check if code around here is good - tests look like OK, but I thought its buggy!? if(from >= to) return; TSU32 len = (to - from);