From 992679d8eefa1f84795e444531fdf65460f5be59 Mon Sep 17 00:00:00 2001 From: DannyArends Date: Tue, 18 Apr 2023 16:04:51 +0100 Subject: [PATCH] Fix for issue #380 Function type does not match previously declared function (StackTraceElement _ctor) by swapping the T this_ and Parameters!method args of the implementation function. --- jni.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jni.d b/jni.d index 890e1b3..e562449 100644 --- a/jni.d +++ b/jni.d @@ -1696,7 +1696,7 @@ private mixin template JavaImportImpl(T, alias method, size_t overloadIndex) { static if(__traits(identifier, method) == "__ctor") pragma(mangle, method.mangleof) - private static T implementation(Parameters!method args, T this_) { + private static T implementation(T this_, Parameters!method args) { auto env = activeEnv; if(env is null) throw new Exception("JNI not active in this thread");