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/EventTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/UnitTests/Common/EventTest.cpp') diff --git a/Source/UnitTests/Common/EventTest.cpp b/Source/UnitTests/Common/EventTest.cpp index f04fe9f45a..86cf46d62b 100644 --- a/Source/UnitTests/Common/EventTest.cpp +++ b/Source/UnitTests/Common/EventTest.cpp @@ -14,7 +14,7 @@ TEST(Event, MultiThreaded) int shared_obj; constexpr int ITERATIONS_COUNT = 100000; - auto sender = [&]() { + auto sender = [&] { for (int i = 0; i < ITERATIONS_COUNT; ++i) { can_send.Wait(); @@ -23,7 +23,7 @@ TEST(Event, MultiThreaded) } }; - auto receiver = [&]() { + auto receiver = [&] { for (int i = 0; i < ITERATIONS_COUNT; ++i) { has_sent.Wait(); -- cgit v1.2.3