mirror of https://github.com/adamdruppe/arsd.git
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:
parent
f14befa028
commit
992679d8ee
2
jni.d
2
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");
|
||||
|
|
Loading…
Reference in New Issue