Remove "warning" in std::cerr to avoid false positive in the testsuite

This commit is contained in:
Mael Rouxel-Labbé 2019-06-27 08:11:13 +02:00
parent ed77935d4f
commit 4d9aa39a90
1 changed files with 1 additions and 1 deletions

View File

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