From 55802124690dfd3e1b870d9d14ed7b454891d2c9 Mon Sep 17 00:00:00 2001 From: Matthew Date: Sun, 17 Aug 2025 08:00:00 +1000 Subject: [PATCH] fix incorrect signature --- math.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math.d b/math.d index a4b4d12..7f2c01f 100644 --- a/math.d +++ b/math.d @@ -10,7 +10,7 @@ import std.format; import std.stdio; T -RoundUp(T a, T b) +RoundUp(T)(T a, T b) { a += b - 1; a -= a%b;