mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 19:30:54 +01:00
Fix build warning
This commit is contained in:
parent
5db9675537
commit
a2365f2adf
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ struct RecursionGuard : RecursionLimiter
|
||||||
, seen(seen)
|
, seen(seen)
|
||||||
{
|
{
|
||||||
// count has been incremented, which should imply that seen has already had an element pushed in.
|
// 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()
|
~RecursionGuard()
|
||||||
|
|
Loading…
Add table
Reference in a new issue