* src/ltlast/formula_tree.cc (instanciate, arity): Add a useless

return 0 at the end to prevent g++ 4.2.3 from complaining about
a missing return.  Reported by Denis Poitrenaud.
This commit is contained in:
Alexandre Duret-Lutz 2009-10-28 14:24:26 +01:00
parent 802754c60a
commit 8901d0d5be
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2009-10-28 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/ltlast/formula_tree.cc (instanciate, arity): Add a useless
return 0 at the end to prevent g++ 4.2.3 from complaining about
a missing return. Reported by Denis Poitrenaud.
2009-10-23 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/tgbatest/kv.test: Don't run valgrind on dot!

View file

@ -58,6 +58,7 @@ namespace spot
/* Unreachable code. */
assert(0);
return 0;
}
size_t
@ -82,6 +83,7 @@ namespace spot
/* Unreachable code. */
assert(0);
return 0;
}
}
}