From a40544ddc58247374cfea69d503b198c7ed318a7 Mon Sep 17 00:00:00 2001 From: Massimiliano Leoni Date: Tue, 23 Mar 2021 12:11:32 +0100 Subject: [PATCH] Changed integer type of Element::index and Element2d::index --- libsrc/meshing/meshtype.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/meshing/meshtype.hpp b/libsrc/meshing/meshtype.hpp index 8644b6aa..b3b33cc4 100644 --- a/libsrc/meshing/meshtype.hpp +++ b/libsrc/meshing/meshtype.hpp @@ -406,7 +406,7 @@ namespace netgen PointGeomInfo geominfo[ELEMENT2D_MAXPOINTS]; /// surface nr - short int index; + int index; /// ELEMENT_TYPE typ; /// number of points @@ -738,7 +738,7 @@ namespace netgen }; /// sub-domain index - short int index; + int index; /// order for hp-FEM unsigned int orderx:6; unsigned int ordery:6;