3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-19 23:14:40 +00:00

Return bool instead of int in extra_API for Z3_open_log (#8048)

The C declaration returns `bool`.

Signed-off-by: Josh Berdine <josh@berdine.net>
This commit is contained in:
Josh Berdine 2025-11-26 02:11:38 +00:00 committed by Nikolaj Bjorner
parent d8ac364bf7
commit f0cb79fc21

View file

@ -6019,7 +6019,7 @@ extern "C" {
\sa Z3_append_log
\sa Z3_close_log
extra_API('Z3_open_log', INT, (_in(STRING),))
extra_API('Z3_open_log', BOOL, (_in(STRING),))
*/
bool Z3_API Z3_open_log(Z3_string filename);