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

Minimal test changes #449

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ namespace MDD_Getter_Test_Receiver_Impl
uint32_t round) override;

private:
std::string connection_;
IDL::traits<::MDD_Getter_Test::CCM_Receiver_Context>::ref_type ciao_context_;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ namespace Test_Sender_Impl
: public IDL::traits<CCM_TT::TT_Handler>::base_type
{
public:
TT_MsgCallback (IDL::traits<::Test::CCM_Sender>::weak_ref_type component_executor)
explicit TT_MsgCallback (IDL::traits<::Test::CCM_Sender>::weak_ref_type component_executor)
: component_executor_(component_executor)
{}

Expand Down
2 changes: 1 addition & 1 deletion ddsx11/tests/latency/receiver/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class LatencyDataListener final :
public DDS::traits<Test::LatencyData>::datareaderlistener_type
{
public:
LatencyDataListener(TestExecutor* executor)
explicit LatencyDataListener(TestExecutor* executor)
: executor_ (executor)
{}

Expand Down
2 changes: 1 addition & 1 deletion ddsx11/tests/minimal_latency/receiver/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class LatencyDataListener final :
public DDS::traits<Test::LatencyData>::datareaderlistener_type
{
public:
LatencyDataListener(TestExecutor* executor)
explicit LatencyDataListener(TestExecutor* executor)
: executor_ (executor)
{}

Expand Down