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 10, 2023
1 parent 0f6272a commit 59996cc
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 @@ -1595,7 +1595,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 59996cc

Please sign in to comment.