Skip to content

Commit

Permalink
remove default arguments to create_client
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Chen <brian.chen@openrobotics.org>
  • Loading branch information
ihasdapie committed Aug 10, 2022
1 parent 176ed23 commit 303f58b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rclcpp/include/rclcpp/create_client.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ create_client(
std::shared_ptr<node_interfaces::NodeServicesInterface> node_services,
std::shared_ptr<node_interfaces::NodeClockInterface> node_clock,
const std::string & service_name,
const rclcpp::QoS & qos = rclcpp::ServicesQoS(),
rclcpp::CallbackGroup::SharedPtr group = nullptr,
bool enable_service_introspection=false)
const rclcpp::QoS & qos,
rclcpp::CallbackGroup::SharedPtr group,
bool enable_service_introspection)
{
return create_client<ServiceT>(
node_base, node_graph, node_services, node_clock, service_name,
Expand Down

0 comments on commit 303f58b

Please sign in to comment.