Fix mixed decls and code in timsort.h

This commit is contained in:
Nick Wellnhofer 2017-10-21 15:09:33 +02:00
parent cfa912dd91
commit 5e986e3b33

View File

@ -528,17 +528,17 @@ static __inline int PUSH_NEXT(SORT_TYPE *dst,
}
void TIM_SORT(SORT_TYPE *dst, const size_t size) {
/* don't bother sorting an array of size 1 */
if (size <= 1) {
return;
}
size_t minrun;
TEMP_STORAGE_T _store, *store;
TIM_SORT_RUN_T run_stack[TIM_SORT_STACK_SIZE];
size_t stack_curr = 0;
size_t curr = 0;
/* don't bother sorting an array of size 1 */
if (size <= 1) {
return;
}
if (size < 64) {
BINARY_INSERTION_SORT(dst, size);
return;