* 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

@ -479,12 +479,12 @@ main(int argc, char** argv)
unobservables = new spot::ltl::atomic_prop_set;
fm_opt = true;
// Parse -U's argument.
const char* tok = strtok(argv[formula_index] + 2, ",; \t");
const char* tok = strtok(argv[formula_index] + 2, ", \t;");
while (tok)
{
unobservables->insert
(static_cast<spot::ltl::atomic_prop*>(env.require(tok)));
tok = strtok(0, ",; \t");
tok = strtok(0, ", \t;");
}
}
else if (!strcmp(argv[formula_index], "-v"))