Properly initialize base class in copy-ctor.

This commit is contained in:
Sylvain Pion 2007-03-23 19:17:37 +00:00
parent b16cc956c8
commit f1921dfc03
1 changed files with 2 additions and 1 deletions

View File

@ -226,7 +226,8 @@ private:
Halfedge_iterator_adaptor(const VDA* vda, Base_iterator cur) Halfedge_iterator_adaptor(const VDA* vda, Base_iterator cur)
: Base(vda, cur), is_first_(true) {} : 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 { operator Halfedge_handle() const {
eval_reference(); eval_reference();