Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Chen <[email protected]>
  • Loading branch information
iche033 committed Aug 28, 2023
1 parent 5eb27cd commit 9c5e3b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/point_cloud/PointCloud_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class PointCloudTestFixture : public ::testing::Test
auto dB = maxColor.B() - minColor.B();
auto dA = maxColor.A() - minColor.A();

for (std::size_t idx = 0; idx < _req.point().size(); idx++)
for (int idx = 0; idx < _req.point().size(); idx++)
{
// Check color correctness
EXPECT_NEAR(dR * (_req.point()[idx].x() / 9) + minColor.R(),
Expand Down

0 comments on commit 9c5e3b6

Please sign in to comment.