Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove fastrtps fixed_size_string.hpp references #695

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions code/DDSCodeTester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ class CustomDomainParticipantListener : public DomainParticipantListener
void on_type_discovery(
DomainParticipant* participant,
const eprosima::fastrtps::rtps::SampleIdentity& request_sample_id,
const eprosima::fastrtps::string_255& topic,
const eprosima::fastcdr::string_255& topic,
const eprosima::fastrtps::types::TypeIdentifier* identifier,
const eprosima::fastrtps::types::TypeObject* object,
eprosima::fastrtps::types::DynamicType_ptr dyn_type) override
Expand Down Expand Up @@ -255,8 +255,8 @@ class CustomDomainParticipantListener : public DomainParticipantListener

void on_type_information_received(
DomainParticipant* participant,
const eprosima::fastrtps::string_255 topic_name,
const eprosima::fastrtps::string_255 type_name,
const eprosima::fastcdr::string_255 topic_name,
const eprosima::fastcdr::string_255 type_name,
const eprosima::fastrtps::types::TypeInformation& type_information) override
{
static_cast<void>(participant);
Expand Down Expand Up @@ -971,7 +971,7 @@ class DiscoveryDomainParticipantListener : public DomainParticipantListener
void on_type_discovery(
DomainParticipant* participant,
const eprosima::fastrtps::rtps::SampleIdentity& request_sample_id,
const eprosima::fastrtps::string_255& topic,
const eprosima::fastcdr::string_255& topic,
const eprosima::fastrtps::types::TypeIdentifier* identifier,
const eprosima::fastrtps::types::TypeObject* object,
eprosima::fastrtps::types::DynamicType_ptr dyn_type) override
Expand Down