Skip to content
Snippets Groups Projects
Commit e7f3f96a authored by Tom Fischer's avatar Tom Fischer
Browse files

Merge pull request #725 from waltherm/fix_matgroups

fix reading of matgroups from gmsh msh
parents 2ec4bfc1 d1777650
No related branches found
No related tags found
No related merge requests found
......@@ -274,7 +274,7 @@ GMSHInterface::readElement(std::ifstream &in,
int mat_id;
std::vector<unsigned> node_ids;
std::vector<MeshLib::Node*> elem_nodes;
in >> idx >> type >> n_tags >> dummy >> mat_id;
in >> idx >> type >> n_tags >> mat_id >> dummy;
// skip tags
for (std::size_t j = 2; j < n_tags; j++)
......
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