Skip to content

Commit 696032d

Browse files
committed
Adjust prints
1 parent dabd3ef commit 696032d

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

std/internal/math/biguintcore.d

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -925,8 +925,7 @@ public:
925925
{
926926
import std.stdio;
927927
() @trusted {
928-
debug writeln("x:", x);
929-
debug writeln("y_:", y_);
928+
debug writeln("modInt: x:", x, ", y_:", y_);
930929
} ();
931930
import core.memory : GC;
932931
uint y = y_;
@@ -963,8 +962,7 @@ public:
963962
{
964963
import std.stdio;
965964
() @trusted {
966-
debug writeln("x:", x);
967-
debug writeln("y:", y);
965+
debug writeln("mod: x:", x, ", y:", y);
968966
} ();
969967
if (y.data.length > x.data.length) return x;
970968
if (y.data.length == 1)

0 commit comments

Comments
 (0)