Add required constructors to Mesh_vertex_base_3<Parallel_tag>

This commit is contained in:
Maxime Gimeno 2021-05-11 09:21:58 +02:00
parent 1b5b61ab0a
commit f6cefea66a
1 changed files with 7 additions and 0 deletions

View File

@ -66,6 +66,13 @@ template <>
class Mesh_vertex_base_3_base<Parallel_tag>
{
public:
Mesh_vertex_base_3_base()
{}
Mesh_vertex_base_3_base( const Mesh_vertex_base_3_base& c)
{
m_erase_counter.store(c.erase_counter());
}
// Erase counter (cf. Compact_container)
unsigned int erase_counter() const