Skip to content

Commit

Permalink
Remove a debug message.
Browse files Browse the repository at this point in the history
  • Loading branch information
pdenapo committed Mar 24, 2023
1 parent 7cebf88 commit ebeb432
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions source/d_mpdecimal/decimal.d
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,8 @@ struct Decimal
}
else static if (op == "-")
{
// debug write("value=");
mpd_print(value);
// debug write("rhs.value=");
mpd_print(rhs.value);
//debug mpd_print(value);
// debug mpd_print(rhs.value);
mpd_sub(value, value, rhs.value, &decimal_ctx);
}
else static if (op == "/")
Expand Down

0 comments on commit ebeb432

Please sign in to comment.