Skip to content

Commit bfef427

Browse files
authored
Address some warnings when generating windows installer for v3.0.0 (#5152)
* Refs #21366: Correct some doxygen public ingroup calls Signed-off-by: Mario Dominguez <[email protected]> * Refs #21366: Removed unused variable warning Signed-off-by: Mario Dominguez <[email protected]> --------- Signed-off-by: Mario Dominguez <[email protected]>
1 parent 817b14a commit bfef427

File tree

5 files changed

+3
-5
lines changed

5 files changed

+3
-5
lines changed

include/fastdds/config/doxygen_modules.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143

144144
#ifdef FASTDDS_STATISTICS
145145
/** @defgroup STATISTICS_MODULE Statistics Module
146-
* @ingroup MANAGEMENT_MODULE
146+
* @ingroup FASTDDS_GENERAL_API
147147
* This module contains the classes associated with the Statistics Protocols.
148148
*/
149149
#endif // ifdef FASTDDS_STATISTICS

include/fastdds/rtps/attributes/RTPSParticipantAttributes.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ namespace rtps {
4545

4646
/**
4747
* Struct to define participant types to set participant type parameter property
48-
* @ingroup DISCOVERY_MODULE
4948
*/
5049
struct ParticipantType
5150
{

include/fastdds/rtps/builtin/data/ContentFilterProperty.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,13 @@ namespace rtps {
3131

3232
/**
3333
* Information about the content filter being applied by a reader.
34-
* @ingroup BUILTIN_MODULE
3534
*/
3635
class ContentFilterProperty
3736
{
3837
public:
3938

4039
/**
4140
* Allocation configuration for a ContentFilterProperty.
42-
* @ingroup BUILTIN_MODULE
4341
*/
4442
struct AllocationConfiguration
4543
{

src/cpp/rtps/transport/shared_mem/SharedMemTransport.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,8 @@ bool SharedMemTransport::is_locator_reachable(
165165
}
166166
catch (const std::exception& e)
167167
{
168+
(void)e;
169+
168170
EPROSIMA_LOG_INFO(RTPS_MSG_OUT,
169171
"Local SHM locator '" << locator <<
170172
"' is not reachable; discarding. Reason: " << e.what());

test/mock/rtps/RTPSParticipantAttributes/fastdds/rtps/attributes/RTPSParticipantAttributes.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ namespace rtps {
4646

4747
/**
4848
* Struct to define participant types to set participant type parameter property
49-
* @ingroup DISCOVERY_MODULE
5049
*/
5150
struct ParticipantType
5251
{

0 commit comments

Comments
 (0)