Fix compile warnings

This commit is contained in:
Wojtek Figat
2024-11-05 11:32:49 +01:00
parent 576639148f
commit 935e25ab7d
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ void LogContext::Print(LogType verbosity)
LogContextData& context = stack.Ptr[index];
// Skip duplicates
if (index < stack.Count - 1 && stack.Ptr[stack.Count - 1] == context)
if (index < (int32)stack.Count - 1 && stack.Ptr[stack.Count - 1] == context)
continue;
// Build call hierarchy via indentation