Revert "Implement `opBinaryRight(string op : "/")` of `UDecimal`"

This reverts commit 266ae6f7dc.

Implementation was impromper and an attempt to fix it outlined
why it was't implemented in the first place.
This commit is contained in:
Elias Batek 2025-01-12 22:59:37 +01:00
parent 4f3dca5a32
commit 6eb6e88594
1 changed files with 2 additions and 2 deletions

View File

@ -480,8 +480,8 @@ struct UDecimal {
}
/// ditto
UDecimal opBinaryRight(string op : "/")(const uint lhs) const {
return UDecimal.make(lhs / _value);
UDecimal opBinaryRight(string op : "/")(const uint) const {
static assert(false, "Use `uint(…) / cast(uint)(UDecimal(…))` instead.");
}
}