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.
This commit is contained in:
DannyArends 2023-04-18 16:04:51 +01:00
parent f14befa028
commit 992679d8ee
1 changed files with 1 additions and 1 deletions

2
jni.d
View File

@ -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");