From 3b49fd6c7039622331e3a46f75b7e46c1ef461a5 Mon Sep 17 00:00:00 2001 From: Relintai Date: Wed, 27 Jul 2022 19:09:59 +0200 Subject: [PATCH] Fix an another unused variable found by emscripten. --- modules/mesh_utils/delaunay/delaunay_3d.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mesh_utils/delaunay/delaunay_3d.h b/modules/mesh_utils/delaunay/delaunay_3d.h index a691a9de1..8dd5cdb52 100644 --- a/modules/mesh_utils/delaunay/delaunay_3d.h +++ b/modules/mesh_utils/delaunay/delaunay_3d.h @@ -369,7 +369,7 @@ public: E = N; } - uint32_t good_triangles = 0; + //uint32_t good_triangles = 0; for (uint32_t j = 0; j < triangles.size(); j++) { if (triangles[j].bad) { continue;