1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-15 01:25:20 +02:00

Fix some warnings (#12615)

This commit is contained in:
rubenwardy
2022-07-30 12:51:23 +01:00
committed by GitHub
parent 6a269d58ef
commit a871115889
9 changed files with 13 additions and 13 deletions

View File

@@ -504,7 +504,7 @@ EmergeThread *EmergeManager::getOptimalThread()
void EmergeManager::reportCompletedEmerge(EmergeAction action)
{
assert((int)action < ARRLEN(m_completed_emerge_counter));
assert((size_t)action < ARRLEN(m_completed_emerge_counter));
m_completed_emerge_counter[(int)action]->increment();
}