From 07b013d7f09deea1c993aa03a3b5ec608380ec4b Mon Sep 17 00:00:00 2001 From: Matthew Fidler Date: Sat, 21 Sep 2024 23:41:25 -0500 Subject: [PATCH] some CF fixes --- src/timeIndexer.h | 1 - src/timsort.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/timeIndexer.h b/src/timeIndexer.h index 80b318e4..ae02cb3c 100644 --- a/src/timeIndexer.h +++ b/src/timeIndexer.h @@ -9,7 +9,6 @@ struct timeInfo { class timeIndexer { public: - timeIndexer() : initialized(false), sorted(false), nIds(0) {} timeIndexer(const std::vector& ids, diff --git a/src/timsort.h b/src/timsort.h index aad5ce36..ad7d7ea8 100644 --- a/src/timsort.h +++ b/src/timsort.h @@ -646,7 +646,6 @@ template class TimSort { } public: - static void merge(iter_t const lo, iter_t const mid, iter_t const hi, Compare compare) { GFX_TIMSORT_ASSERT(lo <= mid); GFX_TIMSORT_ASSERT(mid <= hi);