qualify boost::bind to avoid ambiguity on windows.

This commit is contained in:
Sébastien Loriot 2011-06-08 06:36:55 +00:00
parent 57eb1da24e
commit cc9929b7de
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}