mirror of
https://github.com/Z3Prover/z3
synced 2025-06-19 20:33:38 +00:00
Fix issue reported at http://z3.codeplex.com/workitem/14
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
7e7927052e
commit
711abc75fb
5 changed files with 27 additions and 27 deletions
|
@ -1274,7 +1274,7 @@ extern "C" {
|
|||
|
||||
def_API('Z3_global_param_reset_all', VOID, ())
|
||||
*/
|
||||
void Z3_API Z3_global_param_reset_all();
|
||||
void Z3_API Z3_global_param_reset_all(void);
|
||||
|
||||
/**
|
||||
\brief Get a global (or module) parameter.
|
||||
|
@ -1335,7 +1335,7 @@ extern "C" {
|
|||
|
||||
def_API('Z3_mk_config', CONFIG, ())
|
||||
*/
|
||||
Z3_config Z3_API Z3_mk_config();
|
||||
Z3_config Z3_API Z3_mk_config(void);
|
||||
|
||||
/**
|
||||
\brief Delete the given configuration object.
|
||||
|
@ -4765,7 +4765,7 @@ END_MLAPI_EXCLUDE
|
|||
|
||||
extra_API('Z3_close_log', VOID, ())
|
||||
*/
|
||||
void Z3_API Z3_close_log();
|
||||
void Z3_API Z3_close_log(void);
|
||||
|
||||
/**
|
||||
\brief Enable/disable printing warning messages to the console.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue