fix shadowing of variable name in OpenMeshReadWriteOBJ unit test

This commit is contained in:
Janis Born
2018-11-30 20:19:17 +01:00
parent 229ba7430b
commit cb745d750e

View File

@@ -544,10 +544,10 @@ TEST_F(OpenMeshReadWriteOBJ, FaceTexCoordTest) {
u = 0.0f; u = 0.0f;
for ( auto fh : mesh_.fh_range(fh) ) for ( auto he : mesh_.fh_range(fh) )
{ {
mesh_.set_texcoord2D(fh,Mesh::TexCoord2D(u,u)); mesh_.set_texcoord2D(he,Mesh::TexCoord2D(u,u));
u += 1.0f; u += 1.0f;
} }