mirror of https://github.com/CGAL/cgal
Bug fix: g++-4.7 (and C++03/11) requires to qualify the call.
This commit is contained in:
parent
cd4796e1e4
commit
fd77f801dc
|
|
@ -80,7 +80,7 @@ public:
|
||||||
const Face_handle& fh = eit->first;
|
const Face_handle& fh = eit->first;
|
||||||
const int& i = eit->second;
|
const int& i = eit->second;
|
||||||
|
|
||||||
if(fh->is_constrained(i) && !is_locally_conform(this->tr, fh, i, p))
|
if(fh->is_constrained(i) && !this->is_locally_conform(this->tr, fh, i, p))
|
||||||
{
|
{
|
||||||
return CONFLICT_AND_ELEMENT_SHOULD_BE_DROPPED;
|
return CONFLICT_AND_ELEMENT_SHOULD_BE_DROPPED;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue