Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
mhochsteger committed Nov 6, 2023
1 parent c4bece8 commit b8fe52e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsrc/meshing/python_mesh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1694,7 +1694,7 @@ project_boundaries : Optional[str] = None
}, true);

m.def("ReadMedit", [](const string& filename) {
map<int, tuple<int,int>> index_map;
map<tuple<int, int>, int> index_map;
auto mesh = make_shared<Mesh>();
ReadMeditFormat(*mesh, filename, index_map);
return py::make_tuple(mesh, index_map);
Expand Down

0 comments on commit b8fe52e

Please sign in to comment.