Try to fix compilation with MSVC++

This commit is contained in:
Laurent Rineau 2023-02-14 13:28:07 +01:00
parent 01e75ef345
commit 166ff0fdc7
1 changed files with 0 additions and 7 deletions

View File

@ -20,13 +20,6 @@ template <typename Base>
class Base_with_time_stamp : public Base {
std::size_t time_stamp_ = -1;
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 {