Skip to content

Commit

Permalink
Refs #20165: Fix for custom annotations name hash.
Browse files Browse the repository at this point in the history
Signed-off-by: adriancampo <adriancampo@eprosima.com>
  • Loading branch information
adriancampo committed Mar 6, 2024
1 parent 4bc7e80 commit cd530f9
Show file tree
Hide file tree
Showing 6 changed files with 1,692 additions and 1,791 deletions.
1,694 changes: 822 additions & 872 deletions test/dds/xtypes/TypeLookupServicePublisher.h

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions test/dds/xtypes/TypeLookupServiceSubscriber.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ bool TypeLookupServiceSubscriber::process_type_impl(
if (info.valid_data && reader->is_sample_valid(&data, &info))
{
std::lock_guard<std::mutex> guard(known_types_mutex_);
std::cout << "Subscriber type_" << reader->type().get_type_name() << ": " << std::endl;
// std::cout << "Subscriber type_" << reader->type().get_type_name() << ": " << std::endl;
received_samples_[info.sample_identity.writer_guid()]++;
cv_.notify_all();
}
Expand Down Expand Up @@ -217,7 +217,7 @@ bool TypeLookupServiceSubscriber::process_dyn_type_impl(
if (info.valid_data && reader->is_sample_valid(&data, &info))
{
std::lock_guard<std::mutex> guard(known_types_mutex_);
std::cout << "Subscriber dyn_type_" << reader->type().get_type_name() << ": " << std::endl;
// std::cout << "Subscriber dyn_type_" << reader->type().get_type_name() << ": " << std::endl;
received_samples_[info.sample_identity.writer_guid()]++;
cv_.notify_all();
}
Expand Down
Loading

0 comments on commit cd530f9

Please sign in to comment.