Skip to content

Commit

Permalink
Correct the incorrect comments in generic_client.hpp (#2662)
Browse files Browse the repository at this point in the history
Signed-off-by: Barry Xu <[email protected]>
  • Loading branch information
Barry-Xu-2018 authored Nov 5, 2024
1 parent 9b65494 commit 37e3688
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rclcpp/include/rclcpp/generic_client.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ namespace rclcpp
class GenericClient : public ClientBase
{
public:
using Request = void *; // Serialized data pointer of request message
using Response = void *; // Serialized data pointer of response message
using Request = void *; // Deserialized data pointer of request message
using Response = void *; // Deserialized data pointer of response message

using SharedResponse = std::shared_ptr<void>;

Expand Down

0 comments on commit 37e3688

Please sign in to comment.