* src/ltlvisit/tostring.cc (to_spin_string_visitor): Add missing break.

This commit is contained in:
Alexandre Duret-Lutz 2011-06-16 15:13:49 +02:00
parent fb3edb47e0
commit 3fecb250a2
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2011-06-16 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/ltlvisit/tostring.cc (to_spin_string_visitor): Add missing break.
2011-06-10 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* wrap/python/ajax/spot.in: Touch the directory containing

View file

@ -1,4 +1,4 @@
// Copyright (C) 2008, 2010 Laboratoire de Recherche et Développement
// Copyright (C) 2008, 2010, 2011 Laboratoire de Recherche et Développement
// de l'Epita (LRDE).
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
@ -293,6 +293,7 @@ namespace spot
os_ << " && !";
bo->second()->accept(*this);
os_ << ")";
break;
case binop::U:
bo->first()->accept(*this);
os_ << " U ";