Moved util.d to src/common/

This commit is contained in:
nazrin 2025-06-02 02:12:43 +00:00
parent 4776b84310
commit a21c16d7e5
7 changed files with 7 additions and 7 deletions

8
src/common/util.d Normal file
View file

@ -0,0 +1,8 @@
module common.util;
template defaultCtor(){
this(Args...)(auto ref Args args){
static foreach(i, a; args)
this.tupleof[i] = a;
}
}