Add missing include for integer types (#925)

Closes #924

`uintptr_t` and `uint32` (and possibly more) were undefined because
`cstdint` was not included.
This commit is contained in:
Jan 2023-05-09 20:42:13 +02:00 committed by GitHub
parent 0014905b69
commit 45c6476d41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@
#include <string>
#include <string.h>
#include <stdint.h>
namespace Luau
{

View File

@ -7,6 +7,7 @@
#include <vector>
#include <string>
#include <string.h>
#include <stdint.h>
namespace Luau
{