Skip to content

Commit

Permalink
change count type to size_t to avoid warning (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Mar 17, 2019
1 parent 94af1d2 commit 3ab987a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ typedef struct CustomClientInfo
eprosima::fastrtps::Participant * participant_;
const char * typesupport_identifier_;
ClientPubListener * pub_listener_;
std::atomic_uint32_t response_subscriber_matched_count_;
std::atomic_uint32_t request_publisher_matched_count_;
std::atomic_size_t response_subscriber_matched_count_;
std::atomic_size_t request_publisher_matched_count_;
} CustomClientInfo;

typedef struct CustomClientResponse
Expand Down

0 comments on commit 3ab987a

Please sign in to comment.