3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00

fix debug build..

This commit is contained in:
Nuno Lopes 2019-02-21 13:33:52 +00:00
parent 3a5263be95
commit 3a7c467822

View file

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