fix warnings when compiling without assertions

* spot/twa/acc.hh, spot/twaalgos/alternation.cc,
  spot/twaalgos/determinize.cc, spot/twaalgos/ndfs_result.hxx,
  spot/twaalgos/tau03.cc, spot/ltsmin/ltsmin.cc, tests/core/parity.cc:
  here
This commit is contained in:
Maximilien Colange 2018-05-25 14:09:47 +02:00
parent e886609269
commit a9293f329e
7 changed files with 34 additions and 31 deletions

View file

@ -158,8 +158,7 @@ namespace spot
assert(si_.is_accepting_scc(n));
// Catch unsupported types of automata
bool rej = ensure_weak_scc(n);
assert(rej == false);
assert(!ensure_weak_scc(n));
// Detect if it is a "true state"
unsigned s = si_.states_of(n).front();
auto& ss = g.state_storage(s);