3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-01-24 13:22:28 -08:00
parent 7e7927052e
commit 711abc75fb
5 changed files with 27 additions and 27 deletions

View file

@ -43,7 +43,7 @@ extern "C" {
}
}
void Z3_API Z3_global_param_reset_all() {
void Z3_API Z3_global_param_reset_all(void) {
memory::initialize(UINT_MAX);
LOG_Z3_global_param_reset_all();
gparams::reset();
@ -71,7 +71,7 @@ extern "C" {
}
}
Z3_config Z3_API Z3_mk_config() {
Z3_config Z3_API Z3_mk_config(void) {
memory::initialize(UINT_MAX);
LOG_Z3_mk_config();
Z3_config r = reinterpret_cast<Z3_config>(alloc(context_params));