* src/tgbatest/ltl2tgba.cc (main): Fix another gcc warning in case
assert() is disabled.
This commit is contained in:
parent
7818321589
commit
11762deafc
2 changed files with 8 additions and 1 deletions
|
|
@ -417,7 +417,11 @@ main(int argc, char** argv)
|
|||
std::cout,
|
||||
display_parity_game);
|
||||
else
|
||||
assert(0);
|
||||
{
|
||||
assert(0);
|
||||
// Please GCC so it does not think REL is unused.
|
||||
rel = 0;
|
||||
}
|
||||
|
||||
if (display_rel_sim)
|
||||
aut_red->display_rel_sim(rel, std::cout);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue