Skip to content

Commit

Permalink
test: remove unsused arg
Browse files Browse the repository at this point in the history
  • Loading branch information
xlauko committed Feb 29, 2024
1 parent de6cd6a commit 136ecc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/coro/task.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ namespace gap::test
TEST_CASE("passing parameter by value to task coroutine calls move-constructor exactly once") {
counted::reset_counts();

auto f = [](counted arg) -> gap::coro::task<> { co_return; };
auto f = [](counted) -> gap::coro::task<> { co_return; };

counted c;

Expand Down

0 comments on commit 136ecc7

Please sign in to comment.