mirror of https://github.com/adamdruppe/arsd.git
dangling else lol
This commit is contained in:
parent
533a20cbbb
commit
7641aeb2dc
11
webview.d
11
webview.d
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue