mirror of https://github.com/CGAL/cgal
Add required constructors to Mesh_vertex_base_3<Parallel_tag>
This commit is contained in:
parent
1b5b61ab0a
commit
f6cefea66a
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue