From 88dd28910031d2a3edcd91ab0127de9cab910479 Mon Sep 17 00:00:00 2001 From: Alexander McCord Date: Thu, 25 Apr 2024 14:03:47 -0700 Subject: [PATCH] Fix missing include. --- CodeGen/src/BytecodeAnalysis.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CodeGen/src/BytecodeAnalysis.cpp b/CodeGen/src/BytecodeAnalysis.cpp index e327d94e..7c39f5fc 100644 --- a/CodeGen/src/BytecodeAnalysis.cpp +++ b/CodeGen/src/BytecodeAnalysis.cpp @@ -7,6 +7,8 @@ #include "lobject.h" +#include + LUAU_FASTFLAG(LuauCodegenDirectUserdataFlow) LUAU_FASTFLAG(LuauLoadTypeInfo) // Because new VM typeinfo load changes the format used by Codegen, same flag is used LUAU_FASTFLAGVARIABLE(LuauCodegenTypeInfo, false) // New analysis is flagged separately