Skip to content

Commit be5c64e

Browse files
authored
Fixed bug in compound modifier introduced in #283 (#288)
1 parent 88a5795 commit be5c64e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noether_tpp/src/mesh_modifiers/compound_modifier.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ std::vector<pcl::PolygonMesh> CompoundMeshModifier::modify(const pcl::PolygonMes
1818
const MeshModifier::ConstPtr& modifier = modifiers_[i];
1919

2020
std::vector<pcl::PolygonMesh> tmp_meshes;
21-
for (std::size_t j = 0; j < meshes.size(); ++i)
21+
for (std::size_t j = 0; j < meshes.size(); ++j)
2222
{
2323
try
2424
{

0 commit comments

Comments
 (0)