Skip to content

Commit e3183be

Browse files
committed
fix import
1 parent 8516bcc commit e3183be

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

source/mir/math/numeric.d

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -527,11 +527,12 @@ auto factorial
527527
if (coefficientSize % (size_t.sizeof * 8) == 0 && coefficientSize >= (size_t.sizeof * 8))
528528
in (start)
529529
{
530-
import mir.utility: _expect;
531530
import mir.bignum.fp: Fp;
531+
import mir.checkedint: mulu;
532+
import mir.utility: _expect;
533+
532534
alias R = Fp!(coefficientSize, Exp);
533535
R prod = 1LU;
534-
import mir.checkedint: addu, mulu;
535536

536537
if (count)
537538
{

0 commit comments

Comments
 (0)