Fixed warnings

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@1301 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2015-06-25 10:45:05 +00:00
parent d5c2ea433a
commit ac23cb90bb
2 changed files with 4 additions and 4 deletions

View File

@@ -71,10 +71,10 @@ TEST_F(OpenMeshSmoother_Triangle, Smoother_Poly_Laplace) {
OpenMesh::Smoother::JacobiLaplaceSmootherT<Mesh> smoother(mesh_);
// Just call function to instanciate template
smoother.set_absolute_local_error(0.5);
smoother.set_absolute_local_error(0.5f);
// Set an error
smoother.set_relative_local_error(0.1);
smoother.set_relative_local_error(0.1f);
// Run algorithm with 5 steps
smoother.smooth(5);