diff options
| author | Dr. Dystopia <jonis9898@hotmail.com> | 2025-04-28 22:02:56 +0200 |
|---|---|---|
| committer | Dr. Dystopia <jonis9898@hotmail.com> | 2025-06-14 10:19:31 +0200 |
| commit | ca8f9b672b3d8da3e2974802e89f6c6b6e23d99e (patch) | |
| tree | b6dd8deb5f1bf6d110d71a73521a241d37c577b1 /Source/UnitTests/Common/SPSCQueueTest.cpp | |
| parent | 95f6c76713e6c2a6b50f1a149a7886e72fea6ec7 (diff) | |
Source: Remove redundant lambda parameter lists
Diffstat (limited to 'Source/UnitTests/Common/SPSCQueueTest.cpp')
| -rw-r--r-- | Source/UnitTests/Common/SPSCQueueTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/UnitTests/Common/SPSCQueueTest.cpp b/Source/UnitTests/Common/SPSCQueueTest.cpp index 93b3e584fd..13848bd95f 100644 --- a/Source/UnitTests/Common/SPSCQueueTest.cpp +++ b/Source/UnitTests/Common/SPSCQueueTest.cpp @@ -61,7 +61,7 @@ TEST(SPSCQueue, MultiThreaded) constexpr u32 reps = 100000; - auto inserter = [&]() { + auto inserter = [&] { for (u32 i = 0; i != reps; ++i) q.Push({sptr, i}); @@ -71,7 +71,7 @@ TEST(SPSCQueue, MultiThreaded) EXPECT_EQ(sptr.use_count(), 2); }; - auto popper = [&]() { + auto popper = [&] { for (u32 i = 0; i != reps; ++i) { q.WaitForData(); |
