URL:
https://svn.lrde.epita.fr/svn/oln/trunk/milena
ChangeLog:
2007-11-09 Guillaume Duhamel <guillaume.duhamel(a)lrde.epita.fr>
Fix bug.
* mln/core/clock_neighb2d.hh: Fix assertion bug.
---
clock_neighb2d.hh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: trunk/milena/mln/core/clock_neighb2d.hh
===================================================================
--- trunk/milena/mln/core/clock_neighb2d.hh (revision 1457)
+++ trunk/milena/mln/core/clock_neighb2d.hh (revision 1458)
@@ -111,7 +111,7 @@
std::vector<dpoint2d>::const_iterator ite = v.begin ();
for (; (ite != v.end ()) && (dp != *ite); ++ite, ++begin)
;
- mln_assertion (*ite != v.end ());
+ mln_assertion (ite != v.end ());
for (int i = begin; i < v.size(); ++i)
it.append(v[i]);
for (int i = 0; i < begin; ++i)