fix incorrect order on params

This commit is contained in:
Matthew 2025-10-05 19:55:13 +11:00
parent 79b256e3a4
commit 92c4f8eb66

2
util.d
View File

@ -24,7 +24,7 @@ Int3()
} }
pragma(inline) bool pragma(inline) bool
CondIncr(T, i64 step)(bool cond, T* val) CondIncr(i64 step, T)(bool cond, T* val)
{ {
if(cond) if(cond)
{ {