Skip to content

Commit 92137bf

Browse files
committed
Revert odd clang-tidy 'fix'
1 parent a8815ca commit 92137bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/src/convolve.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ main(int argc, char** argv)
7373
Eigen::ArrayXf gaussian_kernel(5);
7474
gaussian_kernel << 1.f / 16, 1.f / 4, 3.f / 8, 1.f / 4, 1.f / 16;
7575
pcl::console::print_info("convolution kernel:");
76-
for (float i : gaussian_kernel)
77-
pcl::console::print_info(" %f", i);
76+
for (Eigen::Index i = 0; i < gaussian_kernel.size(); ++i)
77+
pcl::console::print_info(" %f", gaussian_kernel[i]);
7878
pcl::console::print_info("\n");
7979

8080
if (argc < 3) {

0 commit comments

Comments
 (0)