lint / review cleanups

This commit is contained in:
bgbsww
2024-01-22 11:01:19 -05:00
parent 1490de0087
commit 31a6eb5a4a
5 changed files with 33 additions and 38 deletions

View File

@@ -206,17 +206,10 @@ void Part::FaceMaker::postBuild() {
std::vector<Data::MappedName> names;
Data::ElementIDRefs sids;
#if 0
for (auto &e : edgeNames) {
names.insert(e.name);
sids += e.sids;
}
#else
// We just use the first source element name to make the face name more
// stable
names.push_back(edgeNames.begin()->name);
sids = edgeNames.begin()->sids;
#endif
this->myTopoShape.setElementComboName(
Data::IndexedName::fromConst("Face",i),names,op,nullptr,&sids);
}