Skip to content

Commit

Permalink
Apply suggestions
Browse files Browse the repository at this point in the history
Signed-off-by: tempate <[email protected]>
  • Loading branch information
Tempate committed Nov 15, 2023
1 parent 86bbf82 commit 66b111d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ std::shared_ptr<DdsPipe> create_pipe(
DdsPipeConfiguration ddspipe_configuration;
ddspipe_configuration.init_enabled = true;

// Create the internal communication (built-in) topics
// Create a built-in topic to transmit endpoint information
ddspipe_configuration.builtin_topics.insert(
utils::Heritable<types::DistributedTopic>::make_heritable(
spy::participants::endpoint_info_topic()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ std::shared_ptr<DdsPipe> create_pipe(
DdsPipeConfiguration ddspipe_configuration;
ddspipe_configuration.init_enabled = true;

// Create the internal communication (built-in) topics
// Create a built-in topic to transmit participant information
ddspipe_configuration.builtin_topics.insert(
utils::Heritable<types::DistributedTopic>::make_heritable(
spy::participants::participant_info_topic()));
Expand Down
3 changes: 2 additions & 1 deletion fastddsspy_tool/src/cpp/tool/Backend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,12 @@ Backend::Backend(
spy_participant_
);

// Create the internal communication (built-in) topics
// Create a built-in topic to transmit participant information
configuration_.ddspipe_configuration.builtin_topics.insert(
utils::Heritable<eprosima::ddspipe::core::types::DistributedTopic>::make_heritable(
spy::participants::participant_info_topic()));

// Create a built-in topic to transmit endpoint information
configuration_.ddspipe_configuration.builtin_topics.insert(
utils::Heritable<eprosima::ddspipe::core::types::DistributedTopic>::make_heritable(
spy::participants::endpoint_info_topic()));
Expand Down

0 comments on commit 66b111d

Please sign in to comment.