From 266ae6f7dc7e3109b9d0691051b21f01c16af38f Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sun, 12 Jan 2025 02:32:25 +0100 Subject: [PATCH] Implement `opBinaryRight(string op : "/")` of `UDecimal` --- pixmappaint.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index c520613..d24be5d 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -475,8 +475,8 @@ struct UDecimal { } /// ditto - UDecimal opBinaryRight(string op : "/")(const uint) const { - static assert(false, "Use `int() / cast(int)(UDecimal())` instead."); + UDecimal opBinaryRight(string op : "/")(const uint lhs) const { + return UDecimal.make(lhs / _value); } }