mirror of https://github.com/CGAL/cgal
qualify boost::bind to avoid ambiguity on windows.
This commit is contained in:
parent
57eb1da24e
commit
cc9929b7de
|
|
@ -5498,8 +5498,8 @@ operator==(const Triangulation_3<GT, Tds1> &t1,
|
|||
using namespace boost;
|
||||
std::vector<Point> V1 (t1.points_begin(), t1.points_end());
|
||||
std::vector<Point> V2 (t2.points_begin(), t2.points_end());
|
||||
std::sort(V1.begin(), V1.end(), bind(cmp1, _1, _2) == NEGATIVE);
|
||||
std::sort(V2.begin(), V2.end(), bind(cmp2, _1, _2) == NEGATIVE);
|
||||
std::sort(V1.begin(), V1.end(), boost::bind(cmp1, _1, _2) == NEGATIVE);
|
||||
std::sort(V2.begin(), V2.end(), boost::bind(cmp2, _1, _2) == NEGATIVE);
|
||||
return V1 == V2;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue