From b9ab7ee6ce1835c63b3fc7fb4033c31e4418d5cd Mon Sep 17 00:00:00 2001 From: Mathias Kraus Date: Wed, 24 Apr 2024 01:36:53 +0200 Subject: [PATCH] iox-#2274 Fix clang-format --- iceoryx_hoofs/test/moduletests/test_functional_function.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iceoryx_hoofs/test/moduletests/test_functional_function.cpp b/iceoryx_hoofs/test/moduletests/test_functional_function.cpp index 6242b38515..fc72c739a9 100644 --- a/iceoryx_hoofs/test/moduletests/test_functional_function.cpp +++ b/iceoryx_hoofs/test/moduletests/test_functional_function.cpp @@ -557,7 +557,7 @@ TEST_F(function_test, CallWithRValueReferenceArgumentsWorks) // NOLINTNEXTLINE(cppcoreguidelines-rvalue-reference-param-not-moved) this is okay for this test auto lambda = [](Arg&& a) { return a.value + 1; }; - function sut(lambda); + function sut(lambda); auto result = sut(std::move(arg));