13 : m_attribute_manager(
std::move(other.m_attribute_manager))
14 , m_multi_mesh_manager(
std::move(other.m_multi_mesh_manager))
15 , m_top_cell_dimension(other.m_top_cell_dimension)
16 , m_is_free(other.m_is_free)
37Mesh::Mesh(
const int64_t& dimension,
const int64_t& max_primitive_type_id)
38 : m_attribute_manager(max_primitive_type_id + 1)
39 , m_multi_mesh_manager(max_primitive_type_id + 1)
40 , m_top_cell_dimension(dimension)
43 for (int64_t j = 0; j <= max_primitive_type_id; ++j) {