From 8bb9aab683725804d41030596f00f0056b624a3d Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Sat, 5 Dec 2015 06:21:15 +0000 Subject: [PATCH] fix --- Plugin/ThinLayerFixMesh.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Plugin/ThinLayerFixMesh.cpp b/Plugin/ThinLayerFixMesh.cpp index bb10044cd7..47eebc0621 100644 --- a/Plugin/ThinLayerFixMesh.cpp +++ b/Plugin/ThinLayerFixMesh.cpp @@ -25,9 +25,6 @@ extern "C" } } -StringXNumber ThingLayerFixMeshOptions_Number[] = { -}; - std::string GMSH_ThinLayerFixMeshPlugin::getHelp() const { return "Fix the mesh in thin parts"; @@ -35,12 +32,12 @@ std::string GMSH_ThinLayerFixMeshPlugin::getHelp() const int GMSH_ThinLayerFixMeshPlugin::getNbOptions() const { - return sizeof(ThingLayerFixMeshOptions_Number) / sizeof(StringXNumber); + return 0; } StringXNumber *GMSH_ThinLayerFixMeshPlugin::getOption(int iopt) { - return &ThingLayerFixMeshOptions_Number[iopt]; + return 0; } -- GitLab