mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-19 19:00:09 +02:00
Source: Remove redundant lambda parameter lists
This commit is contained in:
@ -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++)
|
||||
|
Reference in New Issue
Block a user