* 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:
parent
802754c60a
commit
8901d0d5be
2 changed files with 8 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue