mirror of https://github.com/CGAL/cgal
Fix a warning: the case ALL_VERTICES_FROZEN was not handled
This commit is contained in:
parent
27f24bd350
commit
054725ffc2
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Reference in New Issue