From b0c3f40b0c23682376c90d3e16eff57b81367870 Mon Sep 17 00:00:00 2001 From: Kostadin Date: Mon, 10 Mar 2025 15:02:09 +0200 Subject: [PATCH] Add #include to fix building with gcc 15 (#1720) With gcc 15, the C++ Standard Library no longer includes other headers that were internally used by the library. In Luau's case the missing header is `` Downstream Gentoo bug: https://bugs.gentoo.org/938122 Signed-off-by: Kostadin Shishmanov --------- Co-authored-by: vegorov-rbx <75688451+vegorov-rbx@users.noreply.github.com> --- Analysis/src/TypedAllocator.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Analysis/src/TypedAllocator.cpp b/Analysis/src/TypedAllocator.cpp index a2f49afb..5fb10205 100644 --- a/Analysis/src/TypedAllocator.cpp +++ b/Analysis/src/TypedAllocator.cpp @@ -24,6 +24,7 @@ const size_t kPageSize = sysconf(_SC_PAGESIZE); #endif #endif +#include #include LUAU_FASTFLAG(DebugLuauFreezeArena)