3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-10 09:15:47 +00:00

avoid a few str copies + symbol hiding

This commit is contained in:
Nuno Lopes 2019-03-08 10:13:46 +00:00
parent 70ada9919e
commit cd4b53500c
13 changed files with 22 additions and 33 deletions

View file

@ -20,9 +20,9 @@ Revision History:
#include<iostream>
#include "util/scoped_ctrl_c.h"
scoped_ctrl_c * scoped_ctrl_c::g_obj = nullptr;
static scoped_ctrl_c * g_obj = nullptr;
void scoped_ctrl_c::on_ctrl_c(int) {
static void on_ctrl_c(int) {
if (g_obj->m_first) {
g_obj->m_cancel_eh(CTRL_C_EH_CALLER);
if (g_obj->m_once) {