rb_rational_raw: make a denominator always positive

This commit is contained in:
Kenta Murata 2020-01-17 10:41:03 +09:00
parent 73618d84e8
commit 47465ab1cc
No known key found for this signature in database
GPG key ID: CEFE8AFB6081B062
3 changed files with 26 additions and 0 deletions

View file

@ -1927,6 +1927,10 @@ rb_gcdlcm(VALUE self, VALUE other)
VALUE
rb_rational_raw(VALUE x, VALUE y)
{
if (INT_NEGATIVE_P(y)) {
x = rb_int_uminus(x);
y = rb_int_uminus(y);
}
return nurat_s_new_internal(rb_cRational, x, y);
}