Skip to content

Commit

Permalink
Refs #20815: Avoid doxygen warning about undocumented param in delete…
Browse files Browse the repository at this point in the history
…d functions

Signed-off-by: eduponz <[email protected]>
  • Loading branch information
EduPonz committed Jun 8, 2024
1 parent c954f2a commit 86462c3
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions include/fastrtps/types/DynamicLoanableSequence.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,13 @@ class LoanableSequence<fastrtps::types::DynamicData, _NonConstEnabler>

/// Deleted copy constructor for LoanableSequence.
LoanableSequence(
const LoanableSequence& other) = delete;
const LoanableSequence&) = delete;

/// Deleted copy assignment operator for LoanableSequence.
LoanableSequence& operator =(
const LoanableSequence& other) = delete;
const LoanableSequence&) = delete;

/**
* @brief Move constructor for LoanableSequence.
*
* @param[in] other The other LoanableSequence to move from.
*/
/// Move constructor for LoanableSequence.
LoanableSequence(
LoanableSequence&&) = default;

Expand Down

0 comments on commit 86462c3

Please sign in to comment.