Add missing include for integer types

This commit is contained in:
Jan200101 2023-05-09 20:18:39 +02:00
parent 0014905b69
commit 4d3e84f282
No known key found for this signature in database
GPG key ID: 5B71B1D78B882E05
2 changed files with 2 additions and 0 deletions

View file

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

View file

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