Fix and prevent -Wextra-semi warning

This commit is contained in:
elsid 2022-10-05 23:45:17 +02:00
parent bfa303f73b
commit 063fff7fa4
No known key found for this signature in database
GPG key ID: 4DE04C198CBA7625
34 changed files with 111 additions and 107 deletions

View file

@ -937,7 +937,7 @@ public:
{
if (Settings::Manager::getInt("lua num threads", "Lua") > 0)
mThread = std::thread([this] { threadBody(); });
};
}
~LuaWorker()
{
@ -969,7 +969,7 @@ public:
}
else
update();
};
}
void join()
{