Skip to content

Commit 08914c4

Browse files
committed
undo wrong replace
Signed-off-by: Alberto Soragna <[email protected]>
1 parent e3b258a commit 08914c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rclcpp_lifecycle/src/lifecycle_node_interface_impl.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ class LifecycleNode::LifecycleNodeInterfaceImpl
490490
void
491491
add_timer_handle(std::shared_ptr<rclcpp::TimerBase> timer)
492492
{
493-
weak_timers_heap_.push_back(timer);
493+
weak_timers_.push_back(timer);
494494
}
495495

496496
rcl_lifecycle_state_machine_t state_machine_;
@@ -520,7 +520,7 @@ class LifecycleNode::LifecycleNodeInterfaceImpl
520520

521521
// to controllable things
522522
std::vector<std::weak_ptr<rclcpp_lifecycle::LifecyclePublisherInterface>> weak_pubs_;
523-
std::vector<std::weak_ptr<rclcpp::TimerBase>> weak_timers_heap_;
523+
std::vector<std::weak_ptr<rclcpp::TimerBase>> weak_timers_;
524524
};
525525

526526
} // namespace rclcpp_lifecycle

0 commit comments

Comments
 (0)