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:
parent
5a706300b0
commit
618146c157
5 changed files with 21 additions and 19 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue