Skip to content

Commit 6c200e2

Browse files
committed
Silence GCC -Winline warnings
1 parent 7105bff commit 6c200e2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

include/gfx/timsort.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,9 @@ template <typename RandomAccessIterator, typename Compare> class TimSort {
227227
TimSort() : minGallop_(MIN_GALLOP) {
228228
}
229229

230+
// Silence GCC -Winline warning
231+
~TimSort() {}
232+
230233
void pushRun(iter_t const runBase, diff_t const runLen) {
231234
pending_.push_back(run(runBase, runLen));
232235
}

0 commit comments

Comments
 (0)