Skip to content

Commit

Permalink
Merge pull request #26 from mauropasse/mauro/add-events-executor
Browse files Browse the repository at this point in the history
Use size_t for new_data_unread_count_
  • Loading branch information
iRobot ROS committed Jun 10, 2021
2 parents a9f496c + 00e7e69 commit e486ede
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class SubListener : public EventListenerInterface, public eprosima::fastdds::dds
rmw_event_callback_t on_new_message_cb_{nullptr};
std::mutex on_new_message_m_;
size_t qos_depth_;
uint64_t new_data_unread_count_ = 0;
size_t new_data_unread_count_ = 0;
};

#endif // RMW_FASTRTPS_SHARED_CPP__CUSTOM_SUBSCRIBER_INFO_HPP_

0 comments on commit e486ede

Please sign in to comment.