mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-17 15:54:07 +10:00
Changed size_t to unsigned int
This commit is contained in:
@@ -5,8 +5,8 @@
|
||||
|
||||
typedef struct Toy_Bytecode {
|
||||
unsigned char* ptr;
|
||||
size_t capacity;
|
||||
size_t count;
|
||||
unsigned int capacity;
|
||||
unsigned int count;
|
||||
} Toy_Bytecode;
|
||||
|
||||
TOY_API Toy_Bytecode Toy_compileBytecode(Toy_Ast* ast);
|
||||
|
||||
Reference in New Issue
Block a user