From ca8f9b672b3d8da3e2974802e89f6c6b6e23d99e Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Mon, 28 Apr 2025 22:02:56 +0200 Subject: Source: Remove redundant lambda parameter lists --- Source/UnitTests/Common/BusyLoopTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/UnitTests/Common/BusyLoopTest.cpp') diff --git a/Source/UnitTests/Common/BusyLoopTest.cpp b/Source/UnitTests/Common/BusyLoopTest.cpp index 2dc254b8d6..4108876aad 100644 --- a/Source/UnitTests/Common/BusyLoopTest.cpp +++ b/Source/UnitTests/Common/BusyLoopTest.cpp @@ -16,7 +16,7 @@ TEST(BusyLoopTest, MultiThreaded) for (int i = 0; i < 10; i++) { loop.Prepare(); - std::thread loop_thread([&]() { loop.Run([&]() { e.Set(); }); }); + std::thread loop_thread([&] { loop.Run([&] { e.Set(); }); }); // Ping - Pong for (int j = 0; j < 10; j++) -- cgit v1.2.3