From ad05d9f123812a027cf246784c1f39b6001ad795 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Tue, 6 Jun 2023 21:20:23 +0200 Subject: [PATCH] :green_heart: fix Clang-Tidy warnings --- tests/thirdparty/fifo_map/fifo_map.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/thirdparty/fifo_map/fifo_map.hpp b/tests/thirdparty/fifo_map/fifo_map.hpp index ea1ce084f..180d1768b 100644 --- a/tests/thirdparty/fifo_map/fifo_map.hpp +++ b/tests/thirdparty/fifo_map/fifo_map.hpp @@ -300,7 +300,7 @@ template < /// insert value template - std::pair insert( P&& value ) + std::pair insert( P&& value ) // NOLINT(cppcoreguidelines-missing-std-forward) { m_compare.add_key(value.first); return m_map.insert(value);