* src/tgbaalgos/minimizerun.cc: Shut up a GCC warning when assert

are disabled.
This commit is contained in:
Alexandre Duret-Lutz 2004-11-27 01:03:43 +00:00
parent 6724f4bfbb
commit a5608a7ec4
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2004-11-27 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbaalgos/minimizerun.cc: Shut up a GCC warning when assert
are disabled.
2004-11-27 Alexandre Duret-Lutz <adl@src.lip6.fr> 2004-11-27 Alexandre Duret-Lutz <adl@src.lip6.fr>
Denis Poitrenaud <Denis.Poitrenaud@lip6.fr> Denis Poitrenaud <Denis.Poitrenaud@lip6.fr>

View file

@ -140,6 +140,7 @@ namespace spot
const state* s = shpath.search(segment_next->clone(), res->cycle); const state* s = shpath.search(segment_next->clone(), res->cycle);
ss.clear(); ss.clear();
assert(s->compare(segment_start) == 0); assert(s->compare(segment_start) == 0);
(void)s;
} }
// Compute the prefix: it's the shortest path from the initial // Compute the prefix: it's the shortest path from the initial