From 6aa2d07f9e01d36fc7967b783ae9902f9f9b36e4 Mon Sep 17 00:00:00 2001 From: Joachim Schoeberl Date: Mon, 11 Oct 2021 14:56:53 +0200 Subject: [PATCH] fix warning --- libsrc/meshing/meshtype.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/meshing/meshtype.hpp b/libsrc/meshing/meshtype.hpp index 7485dbdf..d7f8af89 100644 --- a/libsrc/meshing/meshtype.hpp +++ b/libsrc/meshing/meshtype.hpp @@ -348,7 +348,7 @@ namespace netgen } MeshPoint (const Point<3> & ap, int alayer = 1, POINTTYPE apt = INNERPOINT) - : Point<3> (ap), layer(alayer), singular(0.),type(apt) + : Point<3> (ap), singular(0.), layer(alayer), type(apt) { ; }