mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 14:25:44 +08:00
Fix build warning
This commit is contained in:
parent
5db9675537
commit
a2365f2adf
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user