File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ NodeStatus ReactiveFallback::tick()
2828 {
2929 case NodeStatus::RUNNING:
3030 {
31- for (int i=index+1 ; i < childrenCount (); i++)
31+ for (size_t i=index+1 ; i < childrenCount (); i++)
3232 {
3333 haltChild (i);
3434 }
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ NodeStatus ReactiveSequence::tick()
3131 {
3232 running_count++;
3333
34- for (int i=index+1 ; i < childrenCount (); i++)
34+ for (size_t i=index+1 ; i < childrenCount (); i++)
3535 {
3636 haltChild (i);
3737 }
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ NodeStatus SequenceStarNode::tick()
4343 case NodeStatus::FAILURE:
4444 {
4545 // DO NOT reset current_child_idx_ on failure
46- for (int i=current_child_idx_; i < childrenCount (); i++)
46+ for (size_t i=current_child_idx_; i < childrenCount (); i++)
4747 {
4848 haltChild (i);
4949 }
You can’t perform that action at this time.
0 commit comments