Skip to content

Commit

Permalink
fix: fix types in cpp adapter. closes #278
Browse files Browse the repository at this point in the history
  • Loading branch information
satya164 committed Sep 16, 2022
1 parent 8d5e09f commit 2c572dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

extern "C"
JNIEXPORT jint JNICALL
Java_com_<%- project.package -%>_<%- project.name -%>Module_nativeMultiply(JNIEnv *env, jclass type, jint a, jint b) {
Java_com_<%- project.package -%>_<%- project.name -%>Module_nativeMultiply(JNIEnv *env, jclass type, jdouble a, jdouble b) {
return example::multiply(a, b);
}

0 comments on commit 2c572dd

Please sign in to comment.