Add operator= to avoid a deprecated warning

This commit is contained in:
Guillaume Damiand 2019-12-07 08:43:32 +01:00
parent 751b74acb8
commit 47abaf1fdb
2 changed files with 11 additions and 0 deletions

View File

@ -148,6 +148,12 @@ namespace CGAL {
Base(alcc, converters, dartinfoconverter, pointconverter)
{}
Self & operator= (const Self & alcc)
{
Base::operator=(alcc);
return *this;
}
/** Import the given hds which should be a model of an halfedge graph. */
template<class HEG, class PointConverter>
void import_from_halfedge_graph(const HEG& heg ,

View File

@ -144,6 +144,11 @@ namespace CGAL {
Base(alcc, converters, dartinfoconverter, pointconverter)
{}
Self & operator= (const Self & alcc)
{
Base::operator=(alcc);
return *this;
}
};
} // namespace CGAL