Skip to content

Commit d2459fc

Browse files
committed
Refs #21670: Uncrustify
Signed-off-by: cferreiragonz <carlosferreira@eprosima.com>
1 parent 28075a9 commit d2459fc

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

ddspipe_participants/include/ddspipe_participants/participant/dds/CommonParticipant.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ class CommonParticipant : public core::IParticipant
163163
//! Setter for GUID of the participant
164164
void guid(
165165
const fastdds::rtps::GUID_t& guid);
166+
166167
private:
167168

168169
//! GUID of the participant

ddspipe_participants/include/ddspipe_participants/participant/dynamic_types/DynTypesParticipant.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ class DynTypesParticipant : public rtps::SimpleParticipant
121121
//! Override method from \c CommonParticipant to create the internal RTPS participant listener
122122
std::unique_ptr<fastdds::rtps::RTPSParticipantListener> create_listener() override
123123
{
124-
return std::make_unique<DynRTPSListener>(configuration_, discovery_database_, type_object_reader_, received_types_);
124+
return std::make_unique<DynRTPSListener>(configuration_, discovery_database_, type_object_reader_,
125+
received_types_);
125126
}
126127

127128
//! Type Object Internal Reader

ddspipe_participants/src/cpp/participant/dds/CommonParticipant.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,6 @@ void CommonParticipant::DDSListener::guid(
362362
guid_ = guid;
363363
}
364364

365-
366365
CommonParticipant::CommonParticipant(
367366
const std::shared_ptr<SimpleParticipantConfiguration>& participant_configuration,
368367
const std::shared_ptr<core::PayloadPool>& payload_pool,

ddspipe_participants/src/cpp/reader/dds/CommonReader.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ utils::ReturnCode CommonReader::take_nts_(
187187
// There has been an error taking the data. Exit.
188188
return ret;
189189
}
190-
} while (!should_accept_sample_(info));
190+
}
191+
while (!should_accept_sample_(info));
191192

192193
EPROSIMA_LOG_INFO(DDSPIPE_DDS_READER, "Data taken in " << participant_id_ << " for topic " << topic_ << ".");
193194

0 commit comments

Comments
 (0)