* src/tgbaalgos/gtec/ce.cc (couvreur99_check_result::accepting_path):

Initialize best_end to remove a spurious warning.
This commit is contained in:
Alexandre Duret-Lutz 2004-10-29 07:05:30 +00:00
parent e7bc4f2a5a
commit 434475dbc8
2 changed files with 4 additions and 1 deletions

View file

@ -304,7 +304,7 @@ namespace spot
// The best path seen so far.
tgba_run::steps best_path;
// The end state of the base path.
const state* best_end;
const state* best_end = 0;
// The acceptance conditions traversed by BEST_PATH.
bdd best_acc = bddfalse;