3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-14 05:31:28 +00:00

Fix method signature for onBindingWrapper, again

#7828
This commit is contained in:
Karlheinz Friedberger 2025-08-28 22:33:21 +02:00 committed by GitHub
parent a5609364dd
commit 645ad099ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -174,7 +174,7 @@ DLL_VIS JNIEXPORT jlong JNICALL Java_com_microsoft_z3_Native_propagateInit(JNIEn
info->eq = jenv->GetMethodID(jcls, "eqWrapper", "(JJ)V");
info->final = jenv->GetMethodID(jcls, "finWrapper", "()V");
info->decide = jenv->GetMethodID(jcls, "decideWrapper", "(JIZ)V");
info->on_binding = jenv->GetMethodID(jcls, "onBindingWrapper", "(JJ)V");
info->on_binding = jenv->GetMethodID(jcls, "onBindingWrapper", "(JJ)Z");
if (!info->push || !info->pop || !info->fresh || !info->created || !info->fixed || !info->eq || !info->final || !info->decide) {
assert(false);