Skip to content

Commit ed45970

Browse files
committed
Fix -Wsign-compare
1 parent b675876 commit ed45970

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

visualization/motion_planning_tasks/src/local_task_model.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ QModelIndex LocalTaskModel::index(Node* n) const {
6565
const ContainerBase* parent = n->parent();
6666

6767
// the internal pointer refers to n
68-
int row = 0;
68+
size_t row = 0;
6969
auto find_row = [n, &row](const Stage& child, int /* depth */) -> bool {
7070
if (&child == n)
7171
return false; // found, don't continue traversal

0 commit comments

Comments
 (0)