diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-06-14 03:49:47 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-14 03:49:47 -0500 |
| commit | 2047eaf1d86839b53bb92cf79cfae8be2a568ed6 (patch) | |
| tree | b6dd8deb5f1bf6d110d71a73521a241d37c577b1 /Source/UnitTests/Common/EventTest.cpp | |
| parent | 95f6c76713e6c2a6b50f1a149a7886e72fea6ec7 (diff) | |
| parent | ca8f9b672b3d8da3e2974802e89f6c6b6e23d99e (diff) | |
Merge pull request #13671 from tygyh/Source/Remove-redundant-lambda-parameter-lists
Source: Remove redundant lambda parameter lists
Diffstat (limited to 'Source/UnitTests/Common/EventTest.cpp')
| -rw-r--r-- | Source/UnitTests/Common/EventTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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(); |
