Skip to content

Commit b9ab7ee

Browse files
committed
iox-#2274 Fix clang-format
1 parent 221f648 commit b9ab7ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iceoryx_hoofs/test/moduletests/test_functional_function.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ TEST_F(function_test, CallWithRValueReferenceArgumentsWorks)
557557

558558
// NOLINTNEXTLINE(cppcoreguidelines-rvalue-reference-param-not-moved) this is okay for this test
559559
auto lambda = [](Arg&& a) { return a.value + 1; };
560-
function<int32_t(Arg&&), 128> sut(lambda);
560+
function<int32_t(Arg &&), 128> sut(lambda);
561561

562562
auto result = sut(std::move(arg));
563563

0 commit comments

Comments
 (0)