From 5db96755371e6b08465e496d96c08d965230de22 Mon Sep 17 00:00:00 2001 From: Vyacheslav Egorov Date: Fri, 6 Jan 2023 18:30:05 +0200 Subject: [PATCH] Smaller recursion limit to not hit stack overflow in debug on Windows --- Analysis/src/TypeReduction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Analysis/src/TypeReduction.cpp b/Analysis/src/TypeReduction.cpp index e47ee39c..0e66d018 100644 --- a/Analysis/src/TypeReduction.cpp +++ b/Analysis/src/TypeReduction.cpp @@ -9,7 +9,7 @@ #include LUAU_FASTINTVARIABLE(LuauTypeReductionCartesianProductLimit, 100'000) -LUAU_FASTINTVARIABLE(LuauTypeReductionRecursionLimit, 900) +LUAU_FASTINTVARIABLE(LuauTypeReductionRecursionLimit, 700) LUAU_FASTFLAGVARIABLE(DebugLuauDontReduceTypes, false) namespace Luau