Skip to content

Commit bc723fb

Browse files
fix #2539
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent 8ec6219 commit bc723fb

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/nlsat/nlsat_solver.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,6 @@ namespace nlsat {
501501
}
502502

503503
void del(bool_var b) {
504-
TRACE("nlsat", tout << "del " << b << "\n";);
505504
SASSERT(m_bwatches[b].empty());
506505
//SASSERT(m_bvalues[b] == l_undef);
507506
m_num_bool_vars--;

src/parsers/smt2/smt2scanner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ namespace smt2 {
260260
throw scanner_exception("invalid empty bit-vector literal", m_line, m_spos);
261261
return BV_TOKEN;
262262
}
263-
else if ('|') {
263+
else if (c == '|') {
264264
read_multiline_comment();
265265
return NULL_TOKEN;
266266
}

0 commit comments

Comments
 (0)