Skip to content

Commit ead48a9

Browse files
Fixing build warning (#3667) (#3673)
(cherry picked from commit 7d4b199) Co-authored-by: Steve Macenski <[email protected]>
1 parent 3bb9a95 commit ead48a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nav2_smac_planner/test/test_nodelattice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ TEST(NodeLatticeTest, test_node_lattice_custom_footprint)
347347
// Test that the node is valid though all motion primitives poses for custom footprint
348348
nav2_smac_planner::MotionPrimitivePtrs motion_primitives =
349349
nav2_smac_planner::NodeLattice::motion_table.getMotionPrimitives(&node);
350-
EXPECT_GT(motion_primitives.size(), 0);
350+
EXPECT_GT(motion_primitives.size(), 0u);
351351
for (unsigned int i = 0; i < motion_primitives.size(); i++) {
352352
EXPECT_EQ(node.isNodeValid(true, checker.get(), motion_primitives[i], false), true);
353353
EXPECT_EQ(node.isNodeValid(true, checker.get(), motion_primitives[i], true), true);

0 commit comments

Comments
 (0)