STL_extension: Remove copy constructor

This commit is contained in:
Andreas Fabri 2023-10-18 16:24:04 +01:00
parent 7c5742de61
commit 117ccfdd02
1 changed files with 0 additions and 5 deletions

View File

@ -22,11 +22,6 @@ class Base_with_time_stamp : public Base {
public:
using Base::Base;
Base_with_time_stamp(const Base_with_time_stamp& other) :
Base(other),
time_stamp_(other.time_stamp_)
{}
typedef CGAL::Tag_true Has_timestamp;
std::size_t time_stamp() const {