mirror of
https://github.com/Z3Prover/z3
synced 2025-08-04 10:20:23 +00:00
Style, whitespace.
This commit is contained in:
parent
a1a662b23f
commit
6ce903b1d6
2 changed files with 10 additions and 11 deletions
|
@ -20,7 +20,7 @@ Revision History:
|
||||||
#include "common_msgs.h"
|
#include "common_msgs.h"
|
||||||
|
|
||||||
reslimit::reslimit():
|
reslimit::reslimit():
|
||||||
m_cancel(false),
|
m_cancel(0),
|
||||||
m_count(0),
|
m_count(0),
|
||||||
m_limit(0) {
|
m_limit(0) {
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,6 @@ uint64 reslimit::count() const {
|
||||||
return m_count;
|
return m_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool reslimit::inc() {
|
bool reslimit::inc() {
|
||||||
++m_count;
|
++m_count;
|
||||||
return m_cancel == 0 && (m_limit == 0 || m_count <= m_limit);
|
return m_cancel == 0 && (m_limit == 0 || m_count <= m_limit);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue