* 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
|
|
@ -1,5 +1,8 @@
|
|||
2004-08-10 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||
|
||||
* src/tgbatest/ltl2tgba.cc (main): Fix another gcc warning in case
|
||||
assert() is disabled.
|
||||
|
||||
* src/Makefile.am (nodist_EXTRA_libspot_la_SOURCES): New variable,
|
||||
to force C++ linking.
|
||||
|
||||
|
|
|
|||
|
|
@ -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