STL_extension: Fix Base_with_time_stamp (#7807)

## Summary of Changes

Remove the copy constructor of `Base_with_time_stamp`. 
Otherwise we have 'N' in the [Triangulation_2
testsuite](https://cgal.geometryfactory.com/CGAL/testsuite/results-5.5.4-I-169.shtml#Triangulation_2)
for CGAL 5.5.

Note that the copy constructor is not in 5.6 and master. 
Note that this only concerns VC++.

## Release Management

* Affected package(s): STL_extension
* License and copyright ownership:  unchanged
This commit is contained in:
Laurent Rineau 2023-10-19 14:44:45 +02:00 committed by GitHub
commit cc50a6c1e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

View File

@ -22,11 +22,6 @@ class Base_with_time_stamp : public Base {
public: public:
using Base::Base; 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; typedef CGAL::Tag_true Has_timestamp;
std::size_t time_stamp() const { std::size_t time_stamp() const {