mirror of https://github.com/CGAL/cgal
Qualify call to base class function (for intel).
This commit is contained in:
parent
26635c20b6
commit
ca42e510e3
|
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue