* src/sanity/style.test: Suggest ++i over i++ when it does not

matter, for consistency.
* src/tgbaalgos/tarjan_on_fly.cc, iface/gspn/ssp.cc,
src/tgbaalgos/reductgba_sim_del.cc, src/tgbaalgos/reductgba_sim.cc,
src/tgbaalgos/minimalce.cc, src/tgba/tgbareduc.cc: Adjust.
This commit is contained in:
Alexandre Duret-Lutz 2004-09-23 12:20:10 +00:00
parent 3780650ea0
commit 3f2cba6304
9 changed files with 38 additions and 30 deletions

View file

@ -109,8 +109,7 @@ namespace spot
void
tarjan_on_fly::push(const state* s)
{
h[s] = top;
top++;
h[s] = top++;
struct_state ss = { s, 0, top, dftop, 0 };