ICU-22721 Reorder initializer to match declaration (-Wreorder-ctor).

This commit is contained in:
Fredrik Roubert 2024-04-23 14:54:37 +02:00 committed by Frank Yung-Fong Tang
parent d7c1f6b55d
commit 755b0981ec

View file

@ -40,7 +40,7 @@ struct CompactArrays{\
UNIT * data; /*the real space to hold strings*/ \
\
~CompactArrays(){free(index);free(data);} \
CompactArrays():data(nullptr), index(nullptr), count(0){ \
CompactArrays():count(0), index(nullptr), data(nullptr){ \
index = (int32_t *) realloc(index, sizeof(int32_t)); \
index[0] = 0; \
} \
@ -354,7 +354,7 @@ private:
void * backup; //copy source of base
public:
CmdQsort(UErrorCode & status,void *theBase, int32_t num, int32_t width, Func fn, int32_t,int32_t)
:backup(theBase),num(num),width(width),fn(fn){
:fn(fn),num(num),width(width),backup(theBase){
base = malloc(num * width);
time_empty(100, &status); // warm memory/cache
}