Skip to content

Commit

Permalink
switch from SharedPtr to pointer (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
yechun1 authored and mjcarroll committed Dec 7, 2018
1 parent a98841f commit e8c136b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class CameraInfoManager
{
public:
CameraInfoManager(
const rclcpp::Node::SharedPtr & nh,
rclcpp::Node * node,
const std::string & cname = "camera",
const std::string & url = "");

Expand Down
2 changes: 1 addition & 1 deletion camera_info_manager/src/camera_info_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const std::string
* @param url default Uniform Resource Locator for loading and saving data.
*/
CameraInfoManager::CameraInfoManager(
const rclcpp::Node::SharedPtr & node,
rclcpp::Node * node,
const std::string & cname,
const std::string & url)
: logger_(node->get_logger()),
Expand Down

0 comments on commit e8c136b

Please sign in to comment.