* src/eltlparse/eltlparse.yy (realias): Add a useless return to

fix a g++ warning.
This commit is contained in:
Alexandre Duret-Lutz 2012-01-18 10:42:37 +01:00
parent b4ed47129d
commit ebfec98e31
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2012-01-18 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/eltlparse/eltlparse.yy (realias): Add a useless return to
fix a g++ warning.
2012-01-18 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* bench/ltlclasses/run: Typo in comment.

View file

@ -1,5 +1,5 @@
/* Copyright (C) 2008, 2009, 2010, 2011 Laboratoire de Recherche et
** Développement de l'Epita (LRDE).
/* Copyright (C) 2008, 2009, 2010, 2011, 2012 Laboratoire de Recherche
** et Développement de l'Epita (LRDE).
**
** This file is part of Spot, a model checking library.
**
@ -142,6 +142,7 @@ namespace spot
/* Unreachable code. */
assert(0);
return node_ptr(static_cast<node_unop*>(0));
}
}
}