Moved util.d to src/common/
This commit is contained in:
parent
4776b84310
commit
a21c16d7e5
7 changed files with 7 additions and 7 deletions
8
src/common/util.d
Normal file
8
src/common/util.d
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue