mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 14:25:44 +08:00
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:
parent
0014905b69
commit
45c6476d41
@ -8,6 +8,7 @@
|
||||
#include <string>
|
||||
|
||||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
|
@ -7,6 +7,7 @@
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
|
||||
namespace Luau
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user