https://svn.lrde.epita.fr/svn/oln/trunk/scribo
Index: ChangeLog
from Thierry Geraud <thierry.geraud(a)lrde.epita.fr>
Fix missing qualification for left and right.
* text/grouping/internal/find_left_link.hh (find_left_link):
Qualify left with mln.
* text/grouping/internal/find_right_link.hh (find_right_link):
Qualify right with mln.
find_left_link.hh | 2 +-
find_right_link.hh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Index: text/grouping/internal/find_left_link.hh
--- text/grouping/internal/find_left_link.hh (revision 4356)
+++ text/grouping/internal/find_left_link.hh (working copy)
@@ -81,7 +81,7 @@
{
///FIXME: the following code is not generic...
/// First site on the right of the central site
- mln_site(L) p = c + left;
+ mln_site(L) p = c + mln::left;
while (objects.domain().has(p) // Not outside image domain
&& (objects(p) == literal::zero // Is the background
Index: text/grouping/internal/find_right_link.hh
--- text/grouping/internal/find_right_link.hh (revision 4356)
+++ text/grouping/internal/find_right_link.hh (working copy)
@@ -84,7 +84,7 @@
{
///FIXME: the following code is not generic...
/// First site on the right of the central site
- mln_site(L) p = c + right;
+ mln_site(L) p = c + mln::right;
while (objects.domain().has(p) // Not outside image domain
&& (objects(p) == literal::zero // Is the background