3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

add static

This commit is contained in:
Nuno Lopes 2020-09-29 16:48:47 +01:00
parent 367e5fdd52
commit b0635b95d0

View file

@ -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;