3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-12-09 05:13:33 +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 GitHub
parent 4af83e8501
commit 239e0949db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5877,7 +5877,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);