Added missing variable initialization in Node constructor
This commit is contained in:
parent
fc0d539837
commit
2401c0f197
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ Node::Node(
|
|||
rclcpp::context::Context::SharedPtr context,
|
||||
bool use_intra_process_comms)
|
||||
: name_(node_name), context_(context),
|
||||
number_of_subscriptions_(0), number_of_timers_(0), number_of_services_(0),
|
||||
number_of_subscriptions_(0), number_of_timers_(0), number_of_services_(0), number_of_clients_(0),
|
||||
use_intra_process_comms_(use_intra_process_comms), notify_guard_condition_is_valid_(false),
|
||||
graph_listener_(context->get_sub_context<rclcpp::graph_listener::GraphListener>()),
|
||||
should_add_to_graph_listener_(true), graph_users_count_(0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue