We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Looks like there's some incorrect typecasting syntax that presumably didn't previously raise a compile error.
Here's a section of the log, there are a lot of similar problems:
jnius/jnius.c:9710:133: error: expected expression before ‘)’ token v_retmeth = (__pyx_v_j_env[0])->GetMethodID(__pyx_v_j_env, __pyx_v_retclass, ((const_char *)"doubleValue"), ((const_char *)"()D")); ^ jnius/jnius.c:9761:102: error: expected expression before ‘)’ token __pyx_v_retmeth = (__pyx_v_j_env[0])->GetMethodID(__pyx_v_j_env, __pyx_v_retclass, ((const_char *)"shortValue"), ((const_char * ^ jnius/jnius.c:9761:132: error: expected expression before ‘)’ token _v_retmeth = (__pyx_v_j_env[0])->GetMethodID(__pyx_v_j_env, __pyx_v_retclass, ((const_char *)"shortValue"), ((const_char *)"()S")); ^ jnius/jnius.c:9812:102: error: expected expression before ‘)’ token __pyx_v_retmeth = (__pyx_v_j_env[0])->GetMethodID(__pyx_v_j_env, __pyx_v_retclass, ((const_char *)"booleanValue"), ((const_char ^ jnius/jnius.c:9812:134: error: expected expression before ‘)’ token _retmeth = (__pyx_v_j_env[0])->GetMethodID(__pyx_v_j_env, __pyx_v_retclass, ((const_char *)"booleanValue"), ((const_char *)"()Z"));
The text was updated successfully, but these errors were encountered:
This is already fixed in master. ;)
Sorry, something went wrong.
Oh, jolly good. I did wonder why I never hit it with p4a!
No branches or pull requests
Looks like there's some incorrect typecasting syntax that presumably didn't previously raise a compile error.
Here's a section of the log, there are a lot of similar problems:
The text was updated successfully, but these errors were encountered: