From ffb2576776bc9e980def2f3d83ae8d3a6386686b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Tue, 9 Jun 2015 09:42:12 +0000 Subject: [PATCH] Move to omerr git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@1279 fdac6126-5c0c-442c-9429-916003d36597 --- src/OpenMesh/Tools/Decimater/ModNormalDeviationT.hh | 2 +- src/OpenMesh/Tools/Decimater/ModNormalFlippingT.hh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpenMesh/Tools/Decimater/ModNormalDeviationT.hh b/src/OpenMesh/Tools/Decimater/ModNormalDeviationT.hh index b2990855..da1975b2 100644 --- a/src/OpenMesh/Tools/Decimater/ModNormalDeviationT.hh +++ b/src/OpenMesh/Tools/Decimater/ModNormalDeviationT.hh @@ -121,7 +121,7 @@ public: if (!mesh_has_normals) { - std::cerr << "Mesh has no face normals. Compute them automatically." << std::endl; + omerr() << "Mesh has no face normals. Compute them automatically." << std::endl; _mesh.update_face_normals(); } } diff --git a/src/OpenMesh/Tools/Decimater/ModNormalFlippingT.hh b/src/OpenMesh/Tools/Decimater/ModNormalFlippingT.hh index d74ccf7b..2fd3a180 100644 --- a/src/OpenMesh/Tools/Decimater/ModNormalFlippingT.hh +++ b/src/OpenMesh/Tools/Decimater/ModNormalFlippingT.hh @@ -99,7 +99,7 @@ public: if (!mesh_has_normals) { - std::cerr << "Mesh has no face normals. Compute them automatically." << std::endl; + omerr() << "Mesh has no face normals. Compute them automatically." << std::endl; _mesh.update_face_normals(); } }