- fixed a few more leftover Clang warnings.

This commit is contained in:
Christoph Oelckers 2023-03-26 09:27:46 +02:00
commit c1cb7783a6
2 changed files with 3 additions and 3 deletions

View file

@ -721,7 +721,7 @@ FAveragizer::FAveragizer()
void FAveragizer::AddAlloc(size_t alloc)
{
NewestPos = (NewestPos + 1) & (HistorySize - 1);
if (TotalCount < HistorySize)
if (TotalCount < (int)HistorySize)
{
TotalCount++;
}