* src/tgbatest/ltl2tgba.cc (main): Fix another gcc warning in case

assert() is disabled.
This commit is contained in:
Alexandre Duret-Lutz 2004-08-10 16:01:14 +00:00
parent 7818321589
commit 11762deafc
2 changed files with 8 additions and 1 deletions

View file

@ -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);