From 5c8afb31dfef45804c9ceae6fc3c26d6711c4d90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Baz=20Castillo?= Date: Wed, 3 Jul 2024 14:48:21 +0200 Subject: [PATCH] lint --- worker/test/src/RTC/RTCP/TestXr.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worker/test/src/RTC/RTCP/TestXr.cpp b/worker/test/src/RTC/RTCP/TestXr.cpp index 99010115f6..3767ff6945 100644 --- a/worker/test/src/RTC/RTCP/TestXr.cpp +++ b/worker/test/src/RTC/RTCP/TestXr.cpp @@ -3,8 +3,8 @@ #include "RTC/RTCP/XrDelaySinceLastRr.hpp" #include "RTC/RTCP/XrReceiverReferenceTime.hpp" #include -#include #include // std::memcmp(), std::memcpy() +#include using namespace RTC::RTCP; @@ -199,7 +199,7 @@ SCENARIO("RTCP XrDelaySinceLastRt parsing", "[parser][rtcp][xr-dlrr]") // Create local report and check content. // NOTE: We cannot use unique_ptr here since the instance lifecycle will be // managed by the packet. - auto* report1 = new DelaySinceLastRr(); + auto* report1 = new DelaySinceLastRr(); // NOTE: We cannot use unique_ptr here since the instance lifecycle will be // managed by the report. auto* ssrcInfo1 = new DelaySinceLastRr::SsrcInfo();