fix incorrect signature

This commit is contained in:
Matthew 2025-08-17 08:00:00 +10:00
parent 2cf29e6b81
commit 5580212469

2
math.d
View File

@ -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;