Fix build warning

This commit is contained in:
Vyacheslav Egorov 2023-01-06 18:30:32 +02:00
parent 5db9675537
commit a2365f2adf

View File

@ -27,7 +27,7 @@ struct RecursionGuard : RecursionLimiter
, seen(seen)
{
// count has been incremented, which should imply that seen has already had an element pushed in.
LUAU_ASSERT(*count == seen->size());
LUAU_ASSERT(size_t(*count) == seen->size());
}
~RecursionGuard()