1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/bigdecimal] Remove unused variable

https://github.com/ruby/bigdecimal/commit/ac7daa5f15
This commit is contained in:
Kenta Murata 2021-12-24 09:43:22 +09:00
parent 69380c60ce
commit 9ccfc78346

View file

@ -1618,7 +1618,7 @@ BigDecimal_divide(VALUE self, VALUE r, Real **c, Real **res, Real **div)
/* For c = self.div(r): with round operation */
{
ENTER(5);
Real *a, *b, *d;
Real *a, *b;
ssize_t a_prec, b_prec;
size_t mx;