| 29 | )"; |
| 30 | |
| 31 | BT::NodeStatus TickWhileRunning(BT::TreeNode& node) |
| 32 | { |
| 33 | auto status = node.executeTick(); |
| 34 | while(status == BT::NodeStatus::RUNNING) |
| 35 | { |
| 36 | status = node.executeTick(); |
| 37 | } |
| 38 | return status; |
| 39 | } |
| 40 | |
| 41 | } // namespace |
| 42 |
nothing calls this directly
no test coverage detected