From 054725ffc2e825254471db1676bae8b5f4e72bcc Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Tue, 25 Jun 2013 12:42:42 +0200 Subject: [PATCH] Fix a warning: the case ALL_VERTICES_FROZEN was not handled --- Mesh_3/demo/Mesh_3/Mesh_3_optimization_plugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Mesh_3/demo/Mesh_3/Mesh_3_optimization_plugin.cpp b/Mesh_3/demo/Mesh_3/Mesh_3_optimization_plugin.cpp index 82a2b1547fc..2ed1a48e647 100644 --- a/Mesh_3/demo/Mesh_3/Mesh_3_optimization_plugin.cpp +++ b/Mesh_3/demo/Mesh_3/Mesh_3_optimization_plugin.cpp @@ -577,6 +577,7 @@ translate(CGAL::Mesh_optimization_return_code rc) case CGAL::CANT_IMPROVE_ANYMORE: return QString("Can't improve anymore"); case CGAL::CONVERGENCE_REACHED: return QString("Convergence reached"); case CGAL::MAX_ITERATION_NUMBER_REACHED: return QString("Max iteration number reached"); + case CGAL::ALL_VERTICES_FROZEN: return QString("All vertices have been frozen"); } return QString("ERROR");