dangling else lol

This commit is contained in:
Adam D. Ruppe 2023-12-30 08:14:26 -05:00
parent 533a20cbbb
commit 7641aeb2dc
1 changed files with 6 additions and 5 deletions

View File

@ -65,11 +65,12 @@ import core.atomic;
private template InvokerArgFor(T, Context) { private template InvokerArgFor(T, Context) {
alias invoker = typeof(&T.init.Invoke); alias invoker = typeof(&T.init.Invoke);
static if(is(invoker fntype == delegate)) static if(is(invoker fntype == delegate)) {
static if(is(fntype Params == __parameters)) static if(is(fntype Params == __parameters))
alias InvokerArgFor = HRESULT function(Params, Context); alias InvokerArgFor = HRESULT function(Params, Context);
else else
static assert(0); static assert(0);
}
} }
T callback(T, Context)(InvokerArgFor!(T, Context) dg, Context ctx) { T callback(T, Context)(InvokerArgFor!(T, Context) dg, Context ctx) {