* src/tgbaalgos/ltl2tgba_fm.cc: Add a superfluous return to pacify
some GCC version. Report from Denis Poitrenaud.
This commit is contained in:
parent
b052e92537
commit
f11df7679a
2 changed files with 6 additions and 0 deletions
|
|
@ -1,5 +1,8 @@
|
||||||
2004-05-04 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
2004-05-04 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||||
|
|
||||||
|
* src/tgbaalgos/ltl2tgba_fm.cc: Add a superfluous return to pacify
|
||||||
|
some GCC version. Report from Denis Poitrenaud.
|
||||||
|
|
||||||
* wrap/python/cgi/ltl2tgba.in: Fix output HTML.
|
* wrap/python/cgi/ltl2tgba.in: Fix output HTML.
|
||||||
|
|
||||||
2004-05-03 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
2004-05-03 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||||
|
|
|
||||||
|
|
@ -148,6 +148,9 @@ namespace spot
|
||||||
if (isi != dict->var_formula_map.end())
|
if (isi != dict->var_formula_map.end())
|
||||||
return clone(isi->second);
|
return clone(isi->second);
|
||||||
assert(0);
|
assert(0);
|
||||||
|
// Never reached, but some GCC versions complain about
|
||||||
|
// a missing return otherwise.
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
formula*
|
formula*
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue