3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 21:38:44 +00:00

style/formatting

This commit is contained in:
Christoph M. Wintersteiger 2016-09-16 19:34:48 +01:00
parent b70cc47a9d
commit 27ea7d8e9d

View file

@ -156,8 +156,8 @@ namespace sat {
if (m_segments[i] == ptr)
return i;
i = m_num_segments;
#if defined(Z3DEBUG)
SASSERT(i <= c_last_segment);
#if defined(Z3DEBUG)
if (i == c_last_segment) {
if (!m_last_seg_id2cls.contains(cls->id()))
m_last_seg_id2cls.insert(cls->id(), cls);
@ -167,7 +167,6 @@ namespace sat {
m_segments[i] = ptr;
}
#else
SASSERT(i <= c_last_segment);
if (i == c_last_segment) {
throw default_exception("segment out of range");
}