cyclonedds icon indicating copy to clipboard operation
cyclonedds copied to clipboard

Unaddressed warning `-Wdocumentation-deprecated-sync` with LLVM 19 fails `-Werror` build

Open mering opened this issue 1 year ago • 0 comments

For example:

/path/to/cyclonedds/src/core/ddsc/include/dds/dds.h:759:5: error: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Werror,-Wdocumentation-deprecated-sync]
  759 |  * @deprecated Get enabled status on entity. Use \ref dds_get_status_mask instead.
      |    ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  760 |  * @ingroup deprecated
      |  ~
/path/to/cyclonedds/src/core/ddsc/include/dds/dds.h:766:23: note: add a deprecation attribute to the declaration to silence this warning
  766 | DDS_DEPRECATED_EXPORT dds_return_t
      |                       ^
      |                       __attribute__((deprecated))

Using latest released version 0.10.5.

mering avatar Nov 29 '24 10:11 mering