mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
branches/zip: Disable unused function ut_dulint_sort().
This commit is contained in:
parent
6942bfe031
commit
2a70318e38
1 changed files with 4 additions and 2 deletions
|
@ -12,14 +12,15 @@ Created 5/11/1994 Heikki Tuuri
|
|||
#include "ut0byte.ic"
|
||||
#endif
|
||||
|
||||
#include "ut0sort.h"
|
||||
|
||||
/* Zero value for a dulint */
|
||||
dulint ut_dulint_zero = {0, 0};
|
||||
|
||||
/* Maximum value for a dulint */
|
||||
dulint ut_dulint_max = {0xFFFFFFFFUL, 0xFFFFFFFFUL};
|
||||
|
||||
#ifdef notdefined /* unused code */
|
||||
#include "ut0sort.h"
|
||||
|
||||
/****************************************************************
|
||||
Sort function for dulint arrays. */
|
||||
void
|
||||
|
@ -29,3 +30,4 @@ ut_dulint_sort(dulint* arr, dulint* aux_arr, ulint low, ulint high)
|
|||
UT_SORT_FUNCTION_BODY(ut_dulint_sort, arr, aux_arr, low, high,
|
||||
ut_dulint_cmp);
|
||||
}
|
||||
#endif /* notdefined */
|
||||
|
|
Loading…
Reference in a new issue