Skip to content

Commit

Permalink
iox-#2274 Fix clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
elBoberido committed Apr 23, 2024
1 parent 221f648 commit b9ab7ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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<int32_t(Arg&&), 128> sut(lambda);
function<int32_t(Arg &&), 128> sut(lambda);

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

Expand Down

0 comments on commit b9ab7ee

Please sign in to comment.