Qualify call to base class function (for intel).

This commit is contained in:
Marc Glisse 2010-04-23 10:03:59 +00:00
parent 26635c20b6
commit ca42e510e3
3 changed files with 5 additions and 5 deletions

View File

@ -101,7 +101,7 @@ struct Int_t : public Handle_with_policy< Int_rep, Unify > {
bool operator==( const Int_t<Unify>& i) const {
bool equal = (value() == i.value());
if ( equal)
unify(i);
Base::unify(i);
return equal;
}
};
@ -160,7 +160,7 @@ struct Int_vt : public Handle_with_policy< Int_vrep<Unify,Alloc>, Unify > {
bool operator==( const Int_vt<Unify>& i) const {
bool equal = (value() == i.value());
if ( equal)
unify(i);
Base::unify(i);
return equal;
}
};

View File

@ -50,7 +50,7 @@ struct Int_t : public CGAL::Handle_with_policy< Int_rep, Unify > {
bool operator==( const Int_t<Unify>& i) const {
bool equal = (value() == i.value());
if ( equal)
unify(i);
Base::unify(i);
return equal;
}
};

View File

@ -51,7 +51,7 @@ struct Int_t : public ::CGAL::Handle_with_policy< Int_rep, Unify > {
bool operator==( const Int_t<Unify>& i) const {
bool equal = (value() == i.value());
if ( equal)
unify(i);
Base::unify(i);
return equal;
}
};
@ -303,7 +303,7 @@ struct Int_vt : public ::CGAL::Handle_with_policy< Int_vrep<Unify,Alloc>, Unify
bool operator==( const Int_vt<Unify>& i) const {
bool equal = (value() == i.value());
if ( equal)
unify(i);
Base::unify(i);
return equal;
}
};