3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-22 15:05:51 +00:00

Merge master branch and resolve conflicts

- Resolved conflict in src/test/memory.cpp: Accept const qualifier on catch
- Resolved conflict in src/util/mpz.h: Keep HEAD's 64-bit digit handling
- Resolved conflict in src/util/mpz.cpp: Combine ptr() method with fdiv fix
- Resolved conflict in src/util/mpz.cpp: Adapt hash function for 64-bit values
This commit is contained in:
copilot-swe-agent[bot] 2026-07-15 04:16:12 +00:00 committed by GitHub
parent dcf81a2592
commit 468a1cb658
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 31 deletions

View file

@ -39,11 +39,7 @@ static void hit_me(char const* wm) {
Z3_mk_bv_sort(ctx,i);
}
<<<<<<< HEAD
catch (std::bad_alloc&) {
=======
catch (const std::bad_alloc&) {
>>>>>>> origin/master
std::cout << "caught\n";
}
}