Skip to content

Commit

Permalink
Fix -Wsign-compare
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke committed Nov 19, 2021
1 parent b675876 commit ed45970
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ QModelIndex LocalTaskModel::index(Node* n) const {
const ContainerBase* parent = n->parent();

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

0 comments on commit ed45970

Please sign in to comment.