Skip to content

Commit 1eb5249

Browse files
Uncrustify
Signed-off-by: Eugenio Collado <[email protected]>
1 parent b936603 commit 1eb5249

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

src/cpp/rtps/builtin/discovery/participant/simple/PDPStatelessWriter.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class PDPStatelessWriter : public StatelessWriter, private fastdds::rtps::IReade
135135

136136
//! Configured initial peers
137137
fastdds::rtps::LocatorList initial_peers_{};
138-
138+
139139
//! The set of readers interested
140140
mutable ResourceLimitedVector<GUID_t> interested_readers_;
141141
//! Whether we have set that all destinations are interested

src/cpp/rtps/participant/RTPSParticipantImpl.cpp

+7-4
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ static void set_builtin_transports_from_env_var(
147147
"LARGE_DATA", BuiltinTransports::LARGE_DATA,
148148
"LARGE_DATAv6", BuiltinTransports::LARGE_DATAv6))
149149
{
150-
EPROSIMA_LOG_ERROR(RTPS_PARTICIPANT, "Wrong value '" << env_value << "' for environment variable '" <<
150+
EPROSIMA_LOG_ERROR(RTPS_PARTICIPANT,
151+
"Wrong value '" << env_value << "' for environment variable '" <<
151152
env_var_name << "'. Leaving as DEFAULT");
152153
}
153154
// Max_msg_size parser
@@ -486,7 +487,8 @@ RTPSParticipantImpl::RTPSParticipantImpl(
486487
{
487488
EPROSIMA_LOG_INFO(RTPS_PARTICIPANT,
488489
"Participant " << m_att.getName() << " with GUID " << m_guid <<
489-
" tries to create a TCP client for discovery server without providing a proper listening port." <<
490+
" tries to create a TCP client for discovery server without providing a proper listening port."
491+
<<
490492
" No TCP participants will be able to connect to this participant, but it will be able make connections.");
491493
}
492494
for (fastdds::rtps::RemoteServerAttributes& it : m_att.builtin.discovery_config.m_DiscoveryServers)
@@ -1428,7 +1430,7 @@ bool RTPSParticipantImpl::createWriter(
14281430
if (entityId == c_EntityId_SPDPWriter)
14291431
{
14301432
return new PDPStatelessWriter(this, guid, param, flow_controller,
1431-
hist, listen);
1433+
hist, listen);
14321434
}
14331435
else if (persistence != nullptr)
14341436
{
@@ -3027,7 +3029,8 @@ void RTPSParticipantImpl::environment_file_has_changed()
30273029
}
30283030
else
30293031
{
3030-
EPROSIMA_LOG_WARNING(RTPS_QOS_CHECK, "Trying to add Discovery Servers to a participant which is not a SERVER, BACKUP " <<
3032+
EPROSIMA_LOG_WARNING(RTPS_QOS_CHECK,
3033+
"Trying to add Discovery Servers to a participant which is not a SERVER, BACKUP " <<
30313034
"or an overriden CLIENT (SIMPLE participant transformed into CLIENT with the environment variable)");
30323035
}
30333036
}

src/cpp/rtps/participant/RTPSParticipantImpl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ class RTPSParticipantImpl
154154
}
155155

156156
ReceiverControlBlock(
157-
ReceiverControlBlock&& origen)
157+
ReceiverControlBlock && origen)
158158
: Receiver(origen.Receiver)
159159
, mp_receiver(origen.mp_receiver)
160160
{

test/blackbox/api/dds-pim/PubSubParticipant.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ class PubSubParticipant
672672
}
673673

674674
PubSubParticipant& wire_protocol_builtin(
675-
const eprosima::fastrtps::rtps::BuiltinAttributes& wire_protocol_builtin)
675+
const eprosima::fastrtps::rtps::BuiltinAttributes& wire_protocol_builtin)
676676
{
677677
participant_qos_.wire_protocol().builtin = wire_protocol_builtin;
678678
return *this;

test/blackbox/api/fastrtps_deprecated/PubSubParticipant.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ class PubSubParticipant
525525
}
526526

527527
PubSubParticipant& wire_protocol_builtin(
528-
const eprosima::fastrtps::rtps::BuiltinAttributes& wire_protocol_builtin)
528+
const eprosima::fastrtps::rtps::BuiltinAttributes& wire_protocol_builtin)
529529
{
530530
participant_attr_.rtps = wire_protocol.builtin;
531531
return *this;

0 commit comments

Comments
 (0)