Skip to content
Snippets Groups Projects
Commit fb18298a authored by jonathan.froehlich's avatar jonathan.froehlich
Browse files

Fixed Meshes Overlap

parent 63a0cadb
No related branches found
No related tags found
1 merge request!183Resolve "Resolve deprecated warnings"
Pipeline #125045 passed
......@@ -79,7 +79,7 @@ std::unique_ptr<Meshes> MainElasticity::generateMesh(const string &model) const
if (model.find("DG") != std::string::npos) {
mCreator = mCreator.WithOverlap("dG1");
}
if (model.find("EG") != std::string::npos) {
else if (model.find("EG") != std::string::npos) {
mCreator.WithOverlap("EG");
}
else mCreator.WithoutOverlap();
......
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