From 8a7e75e84a31180d51b9970d526709ec4dca2030 Mon Sep 17 00:00:00 2001 From: Michele Papalini Date: Thu, 2 Feb 2023 17:49:46 +0100 Subject: fix(hicn): fix bugs reported by sonarqube Ref: HICN-837 Signed-off-by: Michele Papalini Change-Id: I0d02a11361b1ba5ad50123b2dd142c961998922f --- libtransport/src/protocols/rtc/rtc_indexer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libtransport/src/protocols/rtc') diff --git a/libtransport/src/protocols/rtc/rtc_indexer.h b/libtransport/src/protocols/rtc/rtc_indexer.h index cda156b22..f87fcaaa2 100644 --- a/libtransport/src/protocols/rtc/rtc_indexer.h +++ b/libtransport/src/protocols/rtc/rtc_indexer.h @@ -47,7 +47,7 @@ class RtcIndexer : public Indexer { n_fec_(0), n_current_fec_(n_fec_) {} - RtcIndexer(RtcIndexer &&other) : Indexer(std::forward(other)) {} + RtcIndexer(RtcIndexer &&other) : Indexer(other) {} ~RtcIndexer() {} -- cgit 1.2.3-korg