mirror of https://github.com/CGAL/cgal
Add operator= to avoid a deprecated warning
This commit is contained in:
parent
751b74acb8
commit
47abaf1fdb
|
|
@ -148,6 +148,12 @@ namespace CGAL {
|
||||||
Base(alcc, converters, dartinfoconverter, pointconverter)
|
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. */
|
/** Import the given hds which should be a model of an halfedge graph. */
|
||||||
template<class HEG, class PointConverter>
|
template<class HEG, class PointConverter>
|
||||||
void import_from_halfedge_graph(const HEG& heg ,
|
void import_from_halfedge_graph(const HEG& heg ,
|
||||||
|
|
|
||||||
|
|
@ -144,6 +144,11 @@ namespace CGAL {
|
||||||
Base(alcc, converters, dartinfoconverter, pointconverter)
|
Base(alcc, converters, dartinfoconverter, pointconverter)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
Self & operator= (const Self & alcc)
|
||||||
|
{
|
||||||
|
Base::operator=(alcc);
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace CGAL
|
} // namespace CGAL
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue