From e04ecc06a9c8dfb9c4f5fa455602667641f95c66 Mon Sep 17 00:00:00 2001 From: Alois Klink Date: Wed, 23 Aug 2023 14:30:33 +0100 Subject: [PATCH] =?UTF-8?q?test/loop:=20fix=20'unused=20parameter=20?= =?UTF-8?q?=E2=80=98handle=E2=80=99'=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/uvw/loop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/uvw/loop.cpp b/test/uvw/loop.cpp index d42ab4ce..8d97a134 100644 --- a/test/uvw/loop.cpp +++ b/test/uvw/loop.cpp @@ -88,7 +88,7 @@ TEST(Loop, Walk) { ASSERT_EQ(count, 12u); loop->run(); - loop->walk([&count](auto &handle) { --count; }); + loop->walk([&count](auto &) { --count; }); ASSERT_EQ(count, 12u);