Skip to content

Commit

Permalink
Fix documentation for dds_qos_equal
Browse files Browse the repository at this point in the history
  • Loading branch information
noxpardalis authored and eboasson committed Mar 30, 2023
1 parent e646e3b commit 87b3177
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/core/ddsc/include/dds/ddsc/dds_public_qos.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,12 @@ dds_merge_qos (dds_qos_t * __restrict dst, const dds_qos_t * __restrict src);
/**
* @ingroup qos
* @component qos_obj
* @brief Copy all QoS-policies from one structure to another, unless already set
*
* Policies are copied from src to dst, unless src already has the policy set to a non-default value.
* @brief Check if two qos structures contain the same set of QoS-policies.
*
* @param[in,out] a - Pointer to the destination qos structure
* @param[in] b - Pointer to the source qos structure
* @param[in] a - Pointer to a qos structure
* @param[in] b - Pointer to a qos structure
*
* @returns whether the copy was successful.
* @returns whether the two qos structures contain the same set of QoS-policies
*/
DDS_EXPORT bool
dds_qos_equal (const dds_qos_t * __restrict a, const dds_qos_t * __restrict b);
Expand Down

0 comments on commit 87b3177

Please sign in to comment.