Fix a warning: the case ALL_VERTICES_FROZEN was not handled

This commit is contained in:
Laurent Rineau 2013-06-25 12:42:42 +02:00
parent 27f24bd350
commit 054725ffc2
1 changed files with 1 additions and 0 deletions

View File

@ -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");