3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-08 16:25:48 +00:00

Remove usages of Z3_bool, just use bool.

This commit is contained in:
Bruce Mitchener 2022-07-30 02:06:53 +07:00 committed by Nikolaj Bjorner
parent c682ec1135
commit fc40e3c510
4 changed files with 5 additions and 6 deletions

View file

@ -47,7 +47,7 @@ extern "C" {
env_params::updt_params();
}
Z3_bool Z3_API Z3_global_param_get(Z3_string param_id, Z3_string_ptr param_value) {
bool Z3_API Z3_global_param_get(Z3_string param_id, Z3_string_ptr param_value) {
memory::initialize(UINT_MAX);
LOG_Z3_global_param_get(param_id, param_value);
*param_value = nullptr;