Bug fix: g++-4.7 (and C++03/11) requires to qualify the call.

This commit is contained in:
Laurent Rineau 2012-05-21 06:53:58 +00:00
parent cd4796e1e4
commit fd77f801dc
1 changed files with 1 additions and 1 deletions

View File

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