Code cleanup
Fixed compiler warnings
This commit is contained in:
parent
3187478c99
commit
485bc7550a
13 changed files with 75 additions and 184 deletions
|
|
@ -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>());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue