mirror of https://github.com/CGAL/cgal
gcc43 gives a strange warning that you should add parentheses around
&& in an expression with ||. I'm a bit annoyed by this type of educative behaviour, but to shut it up I added them.
This commit is contained in:
parent
ac2beb5ddc
commit
a55955d1d6
|
|
@ -83,7 +83,7 @@ convex_bounding_box_2(
|
|||
Greater_yx_2 greater_yx_2 = boost::bind(less_yx_2, _2, _1);
|
||||
|
||||
if (less_xy_2(*minx, *f) ||
|
||||
less_yx_2(*minx, *f) && !less_xy_2(*f, *minx))
|
||||
(less_yx_2(*minx, *f) && !less_xy_2(*f, *minx)))
|
||||
if (less_yx_2(*minx, *f))
|
||||
// first quadrant
|
||||
for (;;) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue