Skip to content
This repository was archived by the owner on Dec 9, 2021. It is now read-only.

Commit

Permalink
Fix C++ typesupport (messages compiling now!)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobperron committed Nov 30, 2018
1 parent 1355781 commit 34527d1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ struct @(member.type.name)_;
namespace typesupport_opensplice_cpp
{
void convert_ros_message_to_dds(
const @(__ros_msg_type_prefix) &,
@(__dds_msg_type_prefix) &);
const @('::'.join(member.type.namespaces))::@(member.type.name) &,
@('::'.join(member.type.namespaces))::dds_::@(member.type.name)_ &);
void convert_dds_message_to_ros(
const @(__dds_msg_type_prefix) &,
@(__ros_msg_type_prefix) &);
const @('::'.join(member.type.namespaces))::dds_::@(member.type.name)_ &,
@('::'.join(member.type.namespaces))::@(member.type.name) &);
} // namespace typesupport_opensplice_cpp
@[ for ns in reversed(member.type.namespaces)]@
} // namespace @(ns)
Expand Down

0 comments on commit 34527d1

Please sign in to comment.