mirror of https://github.com/adamdruppe/arsd.git
dangling else lol
This commit is contained in:
parent
533a20cbbb
commit
7641aeb2dc
|
@ -65,12 +65,13 @@ import core.atomic;
|
|||
|
||||
private template InvokerArgFor(T, Context) {
|
||||
alias invoker = typeof(&T.init.Invoke);
|
||||
static if(is(invoker fntype == delegate))
|
||||
static if(is(invoker fntype == delegate)) {
|
||||
static if(is(fntype Params == __parameters))
|
||||
alias InvokerArgFor = HRESULT function(Params, Context);
|
||||
else
|
||||
static assert(0);
|
||||
}
|
||||
}
|
||||
|
||||
T callback(T, Context)(InvokerArgFor!(T, Context) dg, Context ctx) {
|
||||
return new class(dg, ctx) T {
|
||||
|
|
Loading…
Reference in New Issue