mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 19:05:51 +00:00
Switch from using Z3_bool to using bool.
This is a continuation of the work started by using stdbool and continued by switching from Z3_TRUE|FALSE to true|false.
This commit is contained in:
parent
a076e33037
commit
edf8ba44d1
28 changed files with 182 additions and 182 deletions
|
@ -138,7 +138,7 @@ extern "C" {
|
|||
|
||||
def_API('Z3_ast_map_contains', BOOL, (_in(CONTEXT), _in(AST_MAP), _in(AST)))
|
||||
*/
|
||||
Z3_bool Z3_API Z3_ast_map_contains(Z3_context c, Z3_ast_map m, Z3_ast k);
|
||||
bool Z3_API Z3_ast_map_contains(Z3_context c, Z3_ast_map m, Z3_ast k);
|
||||
|
||||
/**
|
||||
\brief Return the value associated with the key \c k.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue