Skip to content

Commit

Permalink
Rename rosidl_message_bounds_t (ros2#166)
Browse files Browse the repository at this point in the history
* Rename rosidl_message_bounds_t

Signed-off-by: Michael Carroll <[email protected]>
  • Loading branch information
mjcarroll authored Apr 24, 2020
1 parent 224d761 commit 03a49c5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions rmw_cyclonedds_cpp/src/rmw_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,7 @@ using MessageTypeSupport_cpp =

extern "C" rmw_ret_t rmw_get_serialized_message_size(
const rosidl_message_type_support_t * type_support,
const rosidl_message_bounds_t * message_bounds, size_t * size)
const rosidl_runtime_c__Sequence__bound * message_bounds, size_t * size)
{
static_cast<void>(type_support);
static_cast<void>(message_bounds);
Expand Down Expand Up @@ -1703,7 +1703,7 @@ static CddsPublisher * create_cdds_publisher(

extern "C" rmw_ret_t rmw_init_publisher_allocation(
const rosidl_message_type_support_t * type_support,
const rosidl_message_bounds_t * message_bounds, rmw_publisher_allocation_t * allocation)
const rosidl_runtime_c__Sequence__bound * message_bounds, rmw_publisher_allocation_t * allocation)
{
static_cast<void>(type_support);
static_cast<void>(message_bounds);
Expand Down Expand Up @@ -1970,7 +1970,8 @@ static CddsSubscription * create_cdds_subscription(

extern "C" rmw_ret_t rmw_init_subscription_allocation(
const rosidl_message_type_support_t * type_support,
const rosidl_message_bounds_t * message_bounds, rmw_subscription_allocation_t * allocation)
const rosidl_runtime_c__Sequence__bound * message_bounds,
rmw_subscription_allocation_t * allocation)
{
static_cast<void>(type_support);
static_cast<void>(message_bounds);
Expand Down

0 comments on commit 03a49c5

Please sign in to comment.