From 45c6476d4148678124696b07225b844a1762dbe8 Mon Sep 17 00:00:00 2001 From: Jan Date: Tue, 9 May 2023 20:42:13 +0200 Subject: [PATCH] Add missing include for integer types (#925) Closes #924 `uintptr_t` and `uint32` (and possibly more) were undefined because `cstdint` was not included. --- Ast/include/Luau/Ast.h | 1 + Ast/src/StringUtils.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/Ast/include/Luau/Ast.h b/Ast/include/Luau/Ast.h index 20158e8..a486ad0 100644 --- a/Ast/include/Luau/Ast.h +++ b/Ast/include/Luau/Ast.h @@ -8,6 +8,7 @@ #include #include +#include namespace Luau { diff --git a/Ast/src/StringUtils.cpp b/Ast/src/StringUtils.cpp index 343c553..d7099a3 100644 --- a/Ast/src/StringUtils.cpp +++ b/Ast/src/StringUtils.cpp @@ -7,6 +7,7 @@ #include #include #include +#include namespace Luau {