Changes to pass sanity tests

* src/ta/taexplicit.hh, src/ta/taexplicit.cc, src/taalgos/minimize.cc,
src/taalgos/tgba2ta.cc, src/tgbatest/ltl2tgba.cc: correct the code style
in order to respect the sanity rules
This commit is contained in:
Ala-Eddine Ben-Salem 2012-04-11 11:15:19 +02:00 committed by Alexandre Duret-Lutz
parent 5a706300b0
commit 618146c157
5 changed files with 21 additions and 19 deletions

View file

@ -311,12 +311,12 @@ namespace spot
&& (!dest_is_livelock_accepting)))
{
get_transitions((*it_trans)->condition)->remove(*it_trans);
delete (*it_trans);
delete *it_trans;
it_trans = trans->erase(it_trans);
}
else
{
it_trans++;
++it_trans;
}
}
@ -536,7 +536,7 @@ namespace spot
}
else
{
it_trans++;
++it_trans;
}
}
}