Skip to content

Commit

Permalink
rclcpp::node::Node is wrong and can not build (#21)
Browse files Browse the repository at this point in the history
change "rclcpp::node::Node " to "rclcpp::Node", and then it works
  • Loading branch information
xin.liu authored and dhood committed Jan 23, 2018
1 parent e29655d commit f91176a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rclcpp_tutorials/src/topics/talker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ int main(int argc, char * argv[])
{
rclcpp::init(argc, argv);

auto node = rclcpp::node::Node::make_shared("talker");
auto node = rclcpp::Node::make_shared("talker");

rmw_qos_profile_t custom_qos_profile = rmw_qos_profile_default;
custom_qos_profile.depth = 7;
Expand Down

0 comments on commit f91176a

Please sign in to comment.