mirror of
https://github.com/luau-lang/luau.git
synced 2025-01-19 17:28:06 +00:00
nit: turn int osize, nsize into size_t
This commit is contained in:
parent
38d76e658d
commit
5bb24aa888
1 changed files with 1 additions and 1 deletions
|
@ -454,7 +454,7 @@ struct lua_Callbacks
|
|||
void (*debuginterrupt)(lua_State* L, lua_Debug* ar); // gets called when thread execution is interrupted by break in another thread
|
||||
void (*debugprotectederror)(lua_State* L); // gets called when protected call results in an error
|
||||
|
||||
void (*onallocate)(lua_State* L, int osize, int nsize); // gets called when memory is allocated
|
||||
void (*onallocate)(lua_State* L, size_t osize, size_t nsize); // gets called when memory is allocated
|
||||
};
|
||||
typedef struct lua_Callbacks lua_Callbacks;
|
||||
|
||||
|
|
Loading…
Reference in a new issue