Skip to content

Commit

Permalink
Fix Wsign-compare warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Wiktor-99 committed Dec 22, 2024
1 parent 61a3e9b commit 108348e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class SemanticComponentInterface
return false;
}
// insert all the values
for (auto i = 0; i < state_interfaces_.size(); ++i)
for (auto i = 0u; i < state_interfaces_.size(); ++i)
{
values.emplace_back(state_interfaces_[i].get().get_value());
}
Expand Down

0 comments on commit 108348e

Please sign in to comment.