From 9fa7f31e264fff4a488b612e8d0850a517501c1b Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Wed, 4 Oct 2023 10:37:06 -0400 Subject: [PATCH] keep the old example compiling --- com.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/com.d b/com.d index fe9ab9f..aef7e6b 100644 --- a/com.d +++ b/com.d @@ -462,6 +462,7 @@ struct ComClient(DVersion, ComVersion = IDispatch) { } } } + +/ static if(is(ComVersion == IDispatch)) template dispatchMethodImpl(string memberName, Ret = void) { @@ -542,6 +543,7 @@ struct ComClient(DVersion, ComVersion = IDispatch) { // so note that if I were to just make this a class, it'd inherit // attributes from the D interface... but I want the RAII struct... // could do a class with a wrapper and alias this though. but meh. + import std.traits; static foreach(memberName; __traits(allMembers, DVersion)) { static foreach(idx, overload; __traits(getOverloads, DVersion, memberName)) { mixin(q{ReturnType!overload }~memberName~q{(Parameters!overload args) { @@ -550,7 +552,6 @@ struct ComClient(DVersion, ComVersion = IDispatch) { }); } } - +/ } VARIANT toComVariant(T)(T arg) {