BigInteger: !count -> count

This commit is contained in:
terrafrost 2019-06-23 11:32:46 -05:00
parent 4af1bb4c17
commit 9e27b4305e
1 changed files with 1 additions and 1 deletions

View File

@ -1586,7 +1586,7 @@ class Math_BigInteger
$temp_value = array($quotient_value[$q_index]);
$temp = $temp->multiply($y);
$temp_value = &$temp->value;
if (!count($temp_value)) {
if (count($temp_value)) {
$temp_value = array_merge($adjust, $temp_value);
}