mirror of https://github.com/CGAL/cgal
Fix Seam_mesh and Dispatch_output_iterator
This commit is contained in:
parent
685a546c8c
commit
608c5c6ac8
|
|
@ -63,6 +63,11 @@ public:
|
||||||
: tmhd(tmhd), seam(seam)
|
: tmhd(tmhd), seam(seam)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
|
#ifndef CGAL_CFG_NO_CPP0X_DELETED_AND_DEFAULT_FUNCTIONS
|
||||||
|
Seam_mesh_halfedge_descriptor&
|
||||||
|
operator=(const Seam_mesh_halfedge_descriptor&)=default;
|
||||||
|
#endif
|
||||||
|
|
||||||
bool operator==(const Seam_mesh_halfedge_descriptor& other) const
|
bool operator==(const Seam_mesh_halfedge_descriptor& other) const
|
||||||
{
|
{
|
||||||
return (tmhd == other.tmhd) && (seam == other.seam);
|
return (tmhd == other.tmhd) && (seam == other.seam);
|
||||||
|
|
|
||||||
|
|
@ -1371,6 +1371,11 @@ public:
|
||||||
|
|
||||||
Dispatch_output_iterator(O... o) : cpp11::tuple<O...>(o...) {}
|
Dispatch_output_iterator(O... o) : cpp11::tuple<O...>(o...) {}
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef CGAL_CFG_NO_CPP0X_DELETED_AND_DEFAULT_FUNCTIONS
|
||||||
|
Dispatch_output_iterator(const Dispatch_output_iterator&)=default;
|
||||||
|
#endif
|
||||||
|
|
||||||
Self& operator=(const Self& s)
|
Self& operator=(const Self& s)
|
||||||
{
|
{
|
||||||
static_cast<Iterator_tuple&>(*this) = static_cast<const Iterator_tuple&>(s);
|
static_cast<Iterator_tuple&>(*this) = static_cast<const Iterator_tuple&>(s);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue