fix(array): include stdint.h

This commit is contained in:
phaneron 2024-07-07 03:05:07 -04:00
parent aa605d1aef
commit 6c0a26cb76

View file

@ -1,6 +1,8 @@
#ifndef STORM_ARRAY_H #ifndef STORM_ARRAY_H
#define STORM_ARRAY_H #define STORM_ARRAY_H
#include <stdint.h>
#define STORM_TS_BASE_ARRAY(type) typedef struct TSBaseArray_##type TSBaseArray_##type; \ #define STORM_TS_BASE_ARRAY(type) typedef struct TSBaseArray_##type TSBaseArray_##type; \
struct TSBaseArray_##type { \ struct TSBaseArray_##type { \
void** vtable; \ void** vtable; \