From 6eb6e8859472b30f9f6468348035242f3500b9c0 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sun, 12 Jan 2025 22:59:37 +0100 Subject: [PATCH] Revert "Implement `opBinaryRight(string op : "/")` of `UDecimal`" This reverts commit 266ae6f7dc7e3109b9d0691051b21f01c16af38f. Implementation was impromper and an attempt to fix it outlined why it was't implemented in the first place. --- pixmappaint.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index b14abfa..1fa7b77 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -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."); } }