From 633a43f907b97d70ee4e10df73352a8002f080f2 Mon Sep 17 00:00:00 2001 From: eduponz Date: Fri, 31 May 2024 11:12:33 +0200 Subject: [PATCH] Refs #20707: Fix uncrustify issue in ParticipantDiscoveryInfo.h Signed-off-by: eduponz --- include/fastdds/rtps/participant/ParticipantDiscoveryInfo.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/fastdds/rtps/participant/ParticipantDiscoveryInfo.h b/include/fastdds/rtps/participant/ParticipantDiscoveryInfo.h index 732b3a952ee..515215c4aeb 100644 --- a/include/fastdds/rtps/participant/ParticipantDiscoveryInfo.h +++ b/include/fastdds/rtps/participant/ParticipantDiscoveryInfo.h @@ -35,6 +35,8 @@ struct ParticipantDiscoveryInfo { //!Enum DISCOVERY_STATUS, four different status for discovered participants. //!@ingroup RTPS_MODULE + // *INDENT-OFF* eduponz: Does not understand the #if correctly and ends up removing the ; + // at the end of the enum, which does not build. #if defined(_WIN32) enum FASTDDS_EXPORTED_API DISCOVERY_STATUS #else @@ -46,7 +48,8 @@ struct ParticipantDiscoveryInfo REMOVED_PARTICIPANT, DROPPED_PARTICIPANT, IGNORED_PARTICIPANT - } + }; + // *INDENT-ON* ParticipantDiscoveryInfo( const ParticipantProxyData& data)