We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3b258a commit 08914c4Copy full SHA for 08914c4
rclcpp_lifecycle/src/lifecycle_node_interface_impl.hpp
@@ -490,7 +490,7 @@ class LifecycleNode::LifecycleNodeInterfaceImpl
490
void
491
add_timer_handle(std::shared_ptr<rclcpp::TimerBase> timer)
492
{
493
- weak_timers_heap_.push_back(timer);
+ weak_timers_.push_back(timer);
494
}
495
496
rcl_lifecycle_state_machine_t state_machine_;
@@ -520,7 +520,7 @@ class LifecycleNode::LifecycleNodeInterfaceImpl
520
521
// to controllable things
522
std::vector<std::weak_ptr<rclcpp_lifecycle::LifecyclePublisherInterface>> weak_pubs_;
523
- std::vector<std::weak_ptr<rclcpp::TimerBase>> weak_timers_heap_;
+ std::vector<std::weak_ptr<rclcpp::TimerBase>> weak_timers_;
524
};
525
526
} // namespace rclcpp_lifecycle
0 commit comments