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

[A/U/MGT] Fix mem leak in tool.

parent 2264d5dc
No related branches found
No related tags found
No related merge requests found
......@@ -162,7 +162,8 @@ int main (int argc, char* argv[])
writeToFile(id_and_area_fname, csv_fname, ids_and_areas, mesh_nodes);
}
std::for_each(all_sfc_pnts.begin(), all_sfc_pnts.end(), std::default_delete<GeoLib::Point>());
std::for_each(all_sfc_nodes.begin(), all_sfc_nodes.end(),
std::default_delete<MeshLib::Node>());
return 0;
}
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