mirror of https://github.com/adamdruppe/arsd.git
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:
parent
4f3dca5a32
commit
6eb6e88594
|
@ -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.");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue