mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
add static
This commit is contained in:
parent
367e5fdd52
commit
b0635b95d0
1 changed files with 7 additions and 7 deletions
|
@ -32,15 +32,15 @@ static mutex g_log_mux;
|
|||
#define SCOPED_LOCK() {}
|
||||
#endif
|
||||
|
||||
extern "C" {
|
||||
void Z3_close_log_unsafe(void) {
|
||||
if (g_z3_log != nullptr) {
|
||||
g_z3_log_enabled = false;
|
||||
dealloc(g_z3_log);
|
||||
g_z3_log = nullptr;
|
||||
}
|
||||
static void Z3_close_log_unsafe(void) {
|
||||
if (g_z3_log != nullptr) {
|
||||
g_z3_log_enabled = false;
|
||||
dealloc(g_z3_log);
|
||||
g_z3_log = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
extern "C" {
|
||||
bool Z3_API Z3_open_log(Z3_string filename) {
|
||||
bool res = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue