mirror of
https://github.com/corda/corda.git
synced 2025-06-17 22:58:19 +00:00
fix 64-bit arithmetic support on x86-32
This commit is contained in:
@ -482,16 +482,3 @@ Java_java_lang_Double_fillBufferWithDouble(JNIEnv* e, jclass, jdouble val,
|
||||
e->ReleaseByteArrayElements(buffer, buf, 0);
|
||||
return count;
|
||||
}
|
||||
|
||||
extern "C" JNIEXPORT void JNICALL
|
||||
Java_java_lang_Long_printLong(JNIEnv*, jclass, jlong v)
|
||||
{
|
||||
fprintf(stderr, "DEBUG: %lld\n", v);
|
||||
}
|
||||
|
||||
|
||||
extern "C" JNIEXPORT void JNICALL
|
||||
Java_java_lang_Long_printInt(JNIEnv*, jclass, jint v)
|
||||
{
|
||||
fprintf(stderr, "DEBUG: %d\n", v);
|
||||
}
|
||||
|
Reference in New Issue
Block a user