Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
Add missing get_serialized_message_size method.
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Carroll <michael@openrobotics.org>
  • Loading branch information
mjcarroll committed May 17, 2019
1 parent 9f20bcc commit 7173e47
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions rmw_connext_cpp/src/rmw_serialize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,15 @@ rmw_deserialize(

return RMW_RET_OK;
}

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*/)
{
RMW_SET_ERROR_MSG("unimplemented");
return RMW_RET_ERROR;
}

} // extern "C"

0 comments on commit 7173e47

Please sign in to comment.