mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
Fix build error
This commit is contained in:
parent
c4bece8dc8
commit
b8fe52edf2
@ -1694,7 +1694,7 @@ project_boundaries : Optional[str] = None
|
|||||||
}, true);
|
}, true);
|
||||||
|
|
||||||
m.def("ReadMedit", [](const string& filename) {
|
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>();
|
auto mesh = make_shared<Mesh>();
|
||||||
ReadMeditFormat(*mesh, filename, index_map);
|
ReadMeditFormat(*mesh, filename, index_map);
|
||||||
return py::make_tuple(mesh, index_map);
|
return py::make_tuple(mesh, index_map);
|
||||||
|
Loading…
Reference in New Issue
Block a user