Mesh: modernize C++: use default member init

This commit is contained in:
wmayer
2023-08-22 23:26:50 +02:00
committed by wwmayer
parent 57057b5840
commit 5da3143f02
48 changed files with 116 additions and 177 deletions

View File

@@ -31,9 +31,8 @@
using namespace Mesh;
Edge::Edge()
: Index(-1)
, Mesh(nullptr)
Edge::Edge() //NOLINT
: Mesh(nullptr)
{
for (int i=0; i<2; i++) {
PIndex[i] = MeshCore::POINT_INDEX_MAX;