MeshPart: modernize C++: use default member init

This commit is contained in:
wmayer
2023-08-22 18:29:36 +02:00
committed by wwmayer
parent 3c6174e521
commit 40042573eb
4 changed files with 27 additions and 55 deletions

View File

@@ -476,8 +476,7 @@ class _VertexCompare
return clP1.X() < clP2.X();
}
_VertexCompare () : dE(1.0e-5) {}
double dE;
double dE = 1.0e-5;
};