* src/tgba/state.hh (state_ptr_less_than): Make sure left is
non-null. Suggested by Denis Poitreneaud.
This commit is contained in:
parent
18a8037a3e
commit
51094329d8
2 changed files with 6 additions and 0 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2003-08-25 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
||||||
|
|
||||||
|
* src/tgba/state.hh (state_ptr_less_than): Make sure left is
|
||||||
|
non-null. Suggested by Denis Poitreneaud.
|
||||||
|
|
||||||
2003-08-23 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
2003-08-23 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
||||||
|
|
||||||
* wrap/python/Makefile.am (MAINTAINERCLEANFILES): Add
|
* wrap/python/Makefile.am (MAINTAINERCLEANFILES): Add
|
||||||
|
|
|
||||||
|
|
@ -46,6 +46,7 @@ namespace spot
|
||||||
bool
|
bool
|
||||||
operator()(const state* left, const state* right) const
|
operator()(const state* left, const state* right) const
|
||||||
{
|
{
|
||||||
|
assert(left);
|
||||||
return left->compare(right) < 0;
|
return left->compare(right) < 0;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue