3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00

c++ example: call Z3_finalize_memory() so that the buildbot leak checker doesnt complain about reachable memory

This commit is contained in:
Nuno Lopes 2020-10-24 15:35:56 +01:00
parent aaa1af5b28
commit 9c08b60b5a

View file

@ -1342,5 +1342,6 @@ int main() {
catch (exception & ex) {
std::cout << "unexpected error: " << ex << "\n";
}
Z3_finalize_memory();
return 0;
}