Add #include <cstdint> to fix building with gcc 15

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 <cstdint>

Downstream Gentoo bug: https://bugs.gentoo.org/938122
Signed-off-by: Kostadin Shishmanov <kostadinshishmanov@protonmail.com>
This commit is contained in:
Kostadin Shishmanov 2025-03-10 01:35:36 +02:00
parent de9f5d6eb6
commit 0d7ce033b5
No known key found for this signature in database
GPG key ID: 0C0D0DF86C3C2269

View file

@ -26,6 +26,8 @@ const size_t kPageSize = sysconf(_SC_PAGESIZE);
#include <stdlib.h>
#include <cstdint>
LUAU_FASTFLAG(DebugLuauFreezeArena)
namespace Luau