Skip to content

Commit

Permalink
Removed redundant void
Browse files Browse the repository at this point in the history
    * connectors/dds4ccm/tests/latency/components/receiver/latency_receiver_exec.h:
    * connectors/dds4ccm/tests/latency/components/sender/latency_sender_exec.cpp:
    * connectors/psdd4ccm/tests/latency/components/sender/latency_sender_exec.cpp:
  • Loading branch information
jwillemsen committed Nov 17, 2023
1 parent d9ca0f4 commit a1c49b0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ namespace Test_Receiver_Impl
/** @name User defined private operations. */
//@{
//@@{__RIDL_REGEN_MARKER__} - BEGIN : Test_Receiver_Impl::Receiver_exec_i[user_private_ops]
void start (void);
void start ();
//@@{__RIDL_REGEN_MARKER__} - END : Test_Receiver_Impl::Receiver_exec_i[user_private_ops]
//@}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ namespace Test_Sender_Impl
}

void
Sender_exec_i::calculate_clock_overhead (void)
Sender_exec_i::calculate_clock_overhead ()
{
int num_of_loops_clock = 320;
uint64_t begin_time = 0;
Expand All @@ -669,7 +669,7 @@ namespace Test_Sender_Impl
}

void
Sender_exec_i::init_values (void)
Sender_exec_i::init_values ()
{
this->duration_times_.reset (new uint64_t[this->samples_]);
this->iteration_results_.reset (new IterationResult[this->iterations_]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ namespace Test_Sender_Impl
}

void
Sender_exec_i::init_values (void)
Sender_exec_i::init_values ()
{
this->duration_times_.reset (new uint64_t[this->samples_]);
this->iteration_results_.reset (new IterationResult[this->iterations_]);
Expand Down

0 comments on commit a1c49b0

Please sign in to comment.