mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 02:40:53 +01:00
Fix signed/unsigned mismatch warning + lower limit to match upstream
This commit is contained in:
parent
a179c5248e
commit
e440729e2b
1 changed files with 2 additions and 2 deletions
|
@ -278,7 +278,7 @@ TEST_CASE_FIXTURE(Fixture, "clone_recursion_limit")
|
|||
#if defined(_DEBUG) || defined(_NOOPT)
|
||||
int limit = 250;
|
||||
#else
|
||||
int limit = 500;
|
||||
int limit = 400;
|
||||
#endif
|
||||
ScopedFastInt luauTypeCloneRecursionLimit{"LuauTypeCloneRecursionLimit", limit};
|
||||
|
||||
|
@ -287,7 +287,7 @@ TEST_CASE_FIXTURE(Fixture, "clone_recursion_limit")
|
|||
TypeId table = src.addType(TableTypeVar{});
|
||||
TypeId nested = table;
|
||||
|
||||
for (unsigned i = 0; i < limit + 100; i++)
|
||||
for (int i = 0; i < limit + 100; i++)
|
||||
{
|
||||
TableTypeVar* ttv = getMutable<TableTypeVar>(nested);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue