fix compilation issues

This commit is contained in:
Sébastien Loriot 2022-11-22 17:42:02 +01:00
parent 7322c7908d
commit c0ba9b479e
2 changed files with 6 additions and 6 deletions

View File

@ -436,6 +436,9 @@ public:
friend class CGAL::internal::Bitstream_descartes_E08_tree<TRAITS>;
friend class CGAL::internal::Bitstream_descartes_E08_tree_rep<TRAITS>;
Bitstream_descartes_E08_node(const Self&) = default;
Self& operator= (const Self&) = delete;
private:
// "node data" (set individually in subdivision)
Integer lower_num_, upper_num_; // TODO use lower_num_, width_num_ instead
@ -466,9 +469,6 @@ private:
log_eps_ = n.log_eps_;
log_C_eps_ = n.log_C_eps_;
}
Bitstream_descartes_E08_node(const Self&) = delete;
Self& operator= (const Self&) = delete;
}; // struct Bitstream_descartes_E08_node

View File

@ -524,6 +524,9 @@ public:
friend class internal::Bitstream_descartes_rndl_tree<TRAITS>;
friend class internal::Bitstream_descartes_rndl_tree_rep<TRAITS>;
Bitstream_descartes_rndl_node(const Self&) = default;
Self& operator= (const Self&) = delete;
private:
// "node data" (set individually in subdivision)
@ -557,9 +560,6 @@ private:
log_eps_ = n.log_eps_;
log_C_eps_ = n.log_C_eps_;
}
Bitstream_descartes_rndl_node(const Self&)=delete;
Self& operator= (const Self&)=delete;
}; // struct Bitstream_descartes_rndl_node