* src/tgbaalgos/gtec/ce.cc: Reinstall change from 2004-09-21.
This commit is contained in:
parent
ed6db92642
commit
5176caf4d2
2 changed files with 5 additions and 3 deletions
|
|
@ -295,9 +295,9 @@ namespace spot
|
|||
todo.pop();
|
||||
delete iter;
|
||||
seen.erase(s);
|
||||
if (todo.size())
|
||||
if (!todo.empty())
|
||||
{
|
||||
assert(path.size());
|
||||
assert(!path.empty());
|
||||
path.pop_back();
|
||||
}
|
||||
continue;
|
||||
|
|
@ -334,7 +334,7 @@ namespace spot
|
|||
|
||||
// If we already have a best path, let see if the current
|
||||
// one is better.
|
||||
if (best_path.size())
|
||||
if (!best_path.empty())
|
||||
{
|
||||
// When comparing the merits of two paths, only the
|
||||
// acceptance conditions we are trying the traverse
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue