Skip to content

Commit 297ad38

Browse files
Removed unused functions (ros2#1230) (ros2#1231)
(cherry picked from commit ff733bc) Signed-off-by: Alejandro Hernandez Cordero <ahcorde@gmail.com> Co-authored-by: Alejandro Hernández Cordero <ahcorde@gmail.com>
1 parent db507af commit 297ad38

1 file changed

Lines changed: 0 additions & 30 deletions

File tree

rcl/test/rcl/test_get_actual_qos.cpp

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -282,12 +282,6 @@ expected_default_qos_profile()
282282
return profile;
283283
}
284284

285-
static constexpr rmw_qos_profile_t
286-
expected_nondefault_qos_profile()
287-
{
288-
return nondefault_qos_profile();
289-
}
290-
291285
static constexpr rmw_qos_profile_t
292286
expected_nondefault_qos_profile_for_fastrtps()
293287
{
@@ -304,18 +298,6 @@ expected_nondefault_qos_profile_for_fastrtps()
304298
return profile;
305299
}
306300

307-
static constexpr rmw_qos_profile_t
308-
expected_system_default_publisher_qos_profile()
309-
{
310-
rmw_qos_profile_t profile = rmw_qos_profile_default;
311-
profile.depth = 1;
312-
profile.deadline.sec = 2147483647;
313-
profile.lifespan.sec = 2147483647;
314-
profile.liveliness = RMW_QOS_POLICY_LIVELINESS_AUTOMATIC;
315-
profile.liveliness_lease_duration.sec = 2147483647;
316-
return profile;
317-
}
318-
319301
static constexpr rmw_qos_profile_t
320302
expected_system_default_publisher_qos_profile_for_fastrtps()
321303
{
@@ -327,18 +309,6 @@ expected_system_default_publisher_qos_profile_for_fastrtps()
327309
return profile;
328310
}
329311

330-
static constexpr rmw_qos_profile_t
331-
expected_system_default_subscription_qos_profile()
332-
{
333-
rmw_qos_profile_t profile = rmw_qos_profile_default;
334-
profile.depth = 1;
335-
profile.reliability = RMW_QOS_POLICY_RELIABILITY_BEST_EFFORT;
336-
profile.deadline.sec = 2147483647;
337-
profile.liveliness = RMW_QOS_POLICY_LIVELINESS_AUTOMATIC;
338-
profile.liveliness_lease_duration.sec = 2147483647;
339-
return profile;
340-
}
341-
342312
static constexpr rmw_qos_profile_t
343313
expected_system_default_subscription_qos_profile_for_fastrtps()
344314
{

0 commit comments

Comments
 (0)