Fix two minor issues found during review of allot_* patch
parent
415fe0a4a8
commit
f485a7ecd4
|
@ -15,8 +15,6 @@ IN: kernel-internals
|
||||||
2drop f
|
2drop f
|
||||||
] if ;
|
] if ;
|
||||||
|
|
||||||
: (>tuple) ( array -- tuple ) (clone) tuple-type become ;
|
|
||||||
|
|
||||||
IN: generic
|
IN: generic
|
||||||
|
|
||||||
: class ( object -- class )
|
: class ( object -- class )
|
||||||
|
|
|
@ -306,7 +306,7 @@ void primitive_bignum_divint(void)
|
||||||
void primitive_bignum_divfloat(void)
|
void primitive_bignum_divfloat(void)
|
||||||
{
|
{
|
||||||
POP_BIGNUMS(x,y);
|
POP_BIGNUMS(x,y);
|
||||||
box_float(
|
box_double(
|
||||||
s48_bignum_to_double(x) /
|
s48_bignum_to_double(x) /
|
||||||
s48_bignum_to_double(y));
|
s48_bignum_to_double(y));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue