Skip to content

Commit

Permalink
Remove unused type alias
Browse files Browse the repository at this point in the history
  • Loading branch information
DIlkhush00 committed Sep 9, 2024
1 parent 8da16e4 commit a650596
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/geometry/test_mesh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ TEST (TestAddDeleteFace, NonManifold2)
TEST (TestAddDeleteFace, Manifold1)
{
using Mesh = ManifoldTriangleMesh;
using VI = VertexIndex;

Mesh mesh;
for (unsigned int i=0; i<7; ++i) mesh.addVertex (i);

Expand Down
2 changes: 1 addition & 1 deletion test/geometry/test_mesh_circulators.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class TestMeshCirculators : public ::testing::Test
for (int i=0; i<7; ++i) mesh_.addVertex ();

VertexIndices vi;
using VI = VertexIndex;

vi.emplace_back(0); vi.emplace_back(1); vi.emplace_back(2); faces_.push_back (vi); vi.clear ();
vi.emplace_back(0); vi.emplace_back(2); vi.emplace_back(3); faces_.push_back (vi); vi.clear ();
vi.emplace_back(0); vi.emplace_back(3); vi.emplace_back(4); faces_.push_back (vi); vi.clear ();
Expand Down

0 comments on commit a650596

Please sign in to comment.