milena r1426: Fix compilation error in core/concept/box.hh
URL: https://svn.lrde.epita.fr/svn/oln/trunk/milena ChangeLog: 2007-11-05 Matthieu Garrigues <garrigues@lrde.epita.fr> Fix compilation error in core/concept/box.hh. * mln/core/concept/box.hh: Add parenthesis to remove an ambiguity at the operator !. --- box.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: trunk/milena/mln/core/concept/box.hh =================================================================== --- trunk/milena/mln/core/concept/box.hh (revision 1425) +++ trunk/milena/mln/core/concept/box.hh (revision 1426) @@ -191,7 +191,7 @@ // FIXME: Same grid! const Bl& lhs = exact(lhs_); const Br& rhs = exact(rhs_); - return lhs <= rhs && ! lhs == rhs; + return lhs <= rhs && ! (lhs == rhs); } # endif // ! MLN_INCLUDE_ONLY
participants (1)
-
Matthieu Garrigues