Skip to content
Snippets Groups Projects
Commit eba45f7b authored by Tom Fischer's avatar Tom Fischer Committed by Dmitri Naumov
Browse files

[MeL/IO] Rm HdfMesh::name since it is never used

parent 34e60e10
No related branches found
No related tags found
No related merge requests found
......@@ -202,7 +202,6 @@ namespace MeshLib::IO
struct HdfWriter::HdfMesh final
{
hid_t const group;
std::string const name;
std::map<std::string, hid_t> const datasets;
std::vector<HdfData> const variable_attributes;
};
......@@ -257,7 +256,7 @@ HdfWriter::HdfWriter(std::vector<MeshHdfData> meshes,
}
_hdf_meshes.push_back(std::make_unique<HdfMesh>(
HdfMesh{group, mesh.name, datasets, mesh.variable_attributes}));
HdfMesh{group, datasets, mesh.variable_attributes}));
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment