mirror of https://github.com/CGAL/cgal
Properly initialize base class in copy-ctor.
This commit is contained in:
parent
b16cc956c8
commit
f1921dfc03
|
|
@ -226,7 +226,8 @@ private:
|
|||
Halfedge_iterator_adaptor(const VDA* vda, Base_iterator cur)
|
||||
: Base(vda, cur), is_first_(true) {}
|
||||
|
||||
Halfedge_iterator_adaptor(const Self& other) { copy_from(other); }
|
||||
Halfedge_iterator_adaptor(const Self& other)
|
||||
: Base(other) { copy_from(other); }
|
||||
|
||||
operator Halfedge_handle() const {
|
||||
eval_reference();
|
||||
|
|
|
|||
Loading…
Reference in New Issue