mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 12:28:44 +00:00
fix debug build..
This commit is contained in:
parent
3a5263be95
commit
3a7c467822
|
@ -50,13 +50,13 @@ public:
|
|||
|
||||
void start() {
|
||||
SASSERT(!m_running);
|
||||
DEBUG_CODE(m_running = true);
|
||||
DEBUG_CODE(m_running = true;);
|
||||
m_start = get();
|
||||
}
|
||||
|
||||
void stop() {
|
||||
SASSERT(m_running);
|
||||
DEBUG_CODE(m_running = false);
|
||||
DEBUG_CODE(m_running = false;);
|
||||
m_elapsed += get() - m_start;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue