From 7641aeb2dc9aeedfc781be806c158c395ea1d2e9 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 30 Dec 2023 08:14:26 -0500 Subject: [PATCH] dangling else lol --- webview.d | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/webview.d b/webview.d index 503ace4..f734cc7 100644 --- a/webview.d +++ b/webview.d @@ -65,11 +65,12 @@ import core.atomic; private template InvokerArgFor(T, Context) { alias invoker = typeof(&T.init.Invoke); - static if(is(invoker fntype == delegate)) - static if(is(fntype Params == __parameters)) - alias InvokerArgFor = HRESULT function(Params, Context); - else - static assert(0); + 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) {