App: PR6497 move return statement to new line

This commit is contained in:
Chris Hennes
2022-03-29 12:33:37 -05:00
parent 2578c3d2ac
commit 132a1d7e55
14 changed files with 76 additions and 38 deletions

View File

@@ -87,7 +87,8 @@ std::pair<std::string,std::string> GeoFeature::getElementName(
(void)type;
std::pair<std::string,std::string> ret;
if(!name) return ret;
if(!name)
return ret;
ret.second = name;
return ret;