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

Fixed warning concerning a missing break.

parent eefd2e54
No related branches found
No related tags found
No related merge requests found
...@@ -399,6 +399,7 @@ const std::string GEOObjects::getElementNameByID(const std::string &geometry_nam ...@@ -399,6 +399,7 @@ const std::string GEOObjects::getElementNameByID(const std::string &geometry_nam
break; break;
default: default:
INFO("GEOObjects::getElementNameByID() - No valid GEOTYPE given."); INFO("GEOObjects::getElementNameByID() - No valid GEOTYPE given.");
break;
} }
return name; return name;
} }
......
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