Skip to content

Commit

Permalink
Update rclcpp/include/rclcpp/node.hpp
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Lalancette <clalancette@gmail.com>
Signed-off-by: Emerson Knapp <emerson.b.knapp@gmail.com>
  • Loading branch information
emersonknapp and clalancette committed Jul 11, 2023
1 parent 6af0cf1 commit 5e8af8c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rclcpp/include/rclcpp/node.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1602,7 +1602,10 @@ class Node : public std::enable_shared_from_this<Node>
const std::string effective_namespace_;

class NodeImpl;
std::shared_ptr<NodeImpl> hidden_impl_;
// This member is meant to be a place to backport features into stable distributions,
// and new features targeting Rolling should not use this.
// See the comment in node.cpp for more information.
std::shared_ptr<NodeImpl> hidden_impl_{nullptr};
};

} // namespace rclcpp
Expand Down

0 comments on commit 5e8af8c

Please sign in to comment.