Skip to content

Commit

Permalink
Return a single ParameterListResult
Browse files Browse the repository at this point in the history
  • Loading branch information
Esteve Fernandez committed Apr 30, 2015
1 parent 54acb9c commit 513e283
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rclcpp/include/rclcpp/parameter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,14 +211,14 @@ class AsyncParametersClient
return f;
}

std::shared_future<std::vector<rcl_interfaces::ParameterListResult>>
std::shared_future<rcl_interfaces::ParameterListResult>
list_parameters(
std::vector<std::string> parameter_prefixes,
uint64_t depth,
std::function<void(
std::shared_future<std::vector<rcl_interfaces::ParameterListResult>>)> callback = nullptr)
std::shared_future<rcl_interfaces::ParameterListResult>)> callback = nullptr)
{
std::shared_future<std::vector<rcl_interfaces::ParameterListResult>> f;
std::shared_future<rcl_interfaces::ParameterListResult> f;
return f;
}

Expand Down

0 comments on commit 513e283

Please sign in to comment.