Sketcher: PR6497 move return statement to new line

This commit is contained in:
Chris Hennes
2022-03-29 13:25:06 -05:00
parent 190d64bdae
commit 1ee046788d
13 changed files with 62 additions and 31 deletions

View File

@@ -84,7 +84,8 @@ bool ExternalGeometryExtension::getFlagsFromName(std::string str, ExternalGeomet
auto pos = std::find_if( ExternalGeometryExtension::flag2str.begin(),
ExternalGeometryExtension::flag2str.end(),
[str](const char * val) {
return strcmp(val,str.c_str())==0;}
return strcmp(val,str.c_str())==0;
}
);
if( pos != ExternalGeometryExtension::flag2str.end()) {