3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-04 06:15:46 +00:00

use stdbool #1526 instead of int

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-03-27 15:41:53 -07:00
parent 78744e589c
commit 76dec85c93
4 changed files with 18 additions and 2 deletions

View file

@ -82,7 +82,7 @@ DEFINE_TYPE(Z3_rcf_num);
/**
\brief Z3 Boolean type. It is just an alias for \c int.
*/
typedef int Z3_bool;
typedef bool Z3_bool;
/**
\brief Z3 string type. It is just an alias for \ccode{const char *}.