Mesh: Fix linter warnings

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

View File

@@ -66,14 +66,8 @@ Edge::~Edge() = default;
Edge& Edge::operator=(const Edge& e)
{
MeshCore::MeshGeomEdge::operator=(e);
Mesh = e.Mesh;
Index = e.Index;
for (int i = 0; i < 2; i++) {
PIndex[i] = e.PIndex[i];
NIndex[i] = e.NIndex[i];
}
Edge c = e;
*this = std::move(c);
return *this;
}