Skip to content

Commit 303f58b

Browse files
committed
remove default arguments to create_client
Signed-off-by: Brian Chen <brian.chen@openrobotics.org>
1 parent 176ed23 commit 303f58b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

rclcpp/include/rclcpp/create_client.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ create_client(
4747
std::shared_ptr<node_interfaces::NodeServicesInterface> node_services,
4848
std::shared_ptr<node_interfaces::NodeClockInterface> node_clock,
4949
const std::string & service_name,
50-
const rclcpp::QoS & qos = rclcpp::ServicesQoS(),
51-
rclcpp::CallbackGroup::SharedPtr group = nullptr,
52-
bool enable_service_introspection=false)
50+
const rclcpp::QoS & qos,
51+
rclcpp::CallbackGroup::SharedPtr group,
52+
bool enable_service_introspection)
5353
{
5454
return create_client<ServiceT>(
5555
node_base, node_graph, node_services, node_clock, service_name,

0 commit comments

Comments
 (0)