mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-12 13:00:38 +00: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
2 changed files with 2 additions and 0 deletions
|
@ -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 a new issue