Code cleanup

Fixed compiler warnings
This commit is contained in:
Sascha Willems 2023-12-24 15:58:23 +01:00
parent 3187478c99
commit 485bc7550a
13 changed files with 75 additions and 184 deletions

View file

@ -102,7 +102,7 @@ namespace vks
void setThreadCount(uint32_t count)
{
threads.clear();
for (auto i = 0; i < count; i++)
for (uint32_t i = 0; i < count; i++)
{
threads.push_back(make_unique<Thread>());
}