fix gcc build
This commit is contained in:
parent
7b031a2aa0
commit
c1d2dd7168
@ -163,11 +163,12 @@ DEF_G(void, copy, B, (Mut* m, usz ms, B x, usz xs, usz l)) {
|
|||||||
case t_f64arr: case t_f64slice:
|
case t_f64arr: case t_f64slice:
|
||||||
memcpy(mpo, f64any_ptr(x)+xs, l*sizeof(B));
|
memcpy(mpo, f64any_ptr(x)+xs, l*sizeof(B));
|
||||||
return;
|
return;
|
||||||
default:
|
default: {
|
||||||
SGet(x)
|
SGet(x)
|
||||||
for (usz i = 0; i < l; i++) mpo[i] = Get(x,i+xs);
|
for (usz i = 0; i < l; i++) mpo[i] = Get(x,i+xs);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static B m_getU_MAX(Mut* m, usz ms) { err("m_setG_MAX"); }
|
static B m_getU_MAX(Mut* m, usz ms) { err("m_setG_MAX"); }
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user