mirror of https://github.com/CGAL/cgal
Remove "warning" in std::cerr to avoid false positive in the testsuite
This commit is contained in:
parent
ed77935d4f
commit
4d9aa39a90
|
|
@ -169,7 +169,7 @@ void smooth_mesh(const FaceRange& faces,
|
|||
#endif
|
||||
|
||||
if(!use_angle_smoothing && !use_area_smoothing)
|
||||
std::cerr << "Warning: called PMP::smooth_mesh() but no smoothing method is being used" << std::endl;
|
||||
std::cerr << "Called PMP::smooth_mesh() without any smoothing method selected or available" << std::endl;
|
||||
|
||||
unsigned int nb_iterations = choose_param(get_param(np, internal_np::number_of_iterations), 1);
|
||||
const bool do_project = choose_param(get_param(np, internal_np::do_project), true);
|
||||
|
|
|
|||
Loading…
Reference in New Issue