Fix -Wshorten-64-to-32 warnings

This commit is contained in:
Andrew Gaul
2023-07-26 11:23:49 +09:00
parent 6344d74ae3
commit 0ece204393
4 changed files with 5 additions and 5 deletions

View File

@ -198,7 +198,7 @@ bool ThreadPoolMan::StopThreads()
// all threads to exit
SetExitFlag(true);
for(uint waitcnt = thread_list.size(); 0 < waitcnt; --waitcnt){
for(size_t waitcnt = thread_list.size(); 0 < waitcnt; --waitcnt){
thpoolman_sem.post();
}