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:
parent
69380c60ce
commit
9ccfc78346
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue