Mesh: Fix linter warnings

This commit is contained in:
wmayer
2024-11-20 23:02:40 +01:00
committed by wwmayer
parent 4e82a0af48
commit 7a2bfb7370
86 changed files with 1734 additions and 1882 deletions

View File

@@ -75,14 +75,8 @@ Facet::~Facet() = default;
Facet& Facet::operator=(const Facet& f)
{
MeshCore::MeshGeomFacet::operator=(f);
Mesh = f.Mesh;
Index = f.Index;
for (int i = 0; i < 3; i++) {
PIndex[i] = f.PIndex[i];
NIndex[i] = f.NIndex[i];
}
Facet c = f;
*this = std::move(c);
return *this;
}