mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 14:18:42 +01:00
minor cleanup
This commit is contained in:
@ -777,8 +777,8 @@ DEF_PRIMITIVE(num_pow)
|
|||||||
|
|
||||||
DEF_PRIMITIVE(num_fraction)
|
DEF_PRIMITIVE(num_fraction)
|
||||||
{
|
{
|
||||||
double dummy;
|
double unused;
|
||||||
RETURN_NUM(modf(AS_NUM(args[0]) , &dummy));
|
RETURN_NUM(modf(AS_NUM(args[0]) , &unused));
|
||||||
}
|
}
|
||||||
|
|
||||||
DEF_PRIMITIVE(num_isInfinity)
|
DEF_PRIMITIVE(num_isInfinity)
|
||||||
|
|||||||
Reference in New Issue
Block a user