Forgot memory allocator for reffunctions

This commit is contained in:
2023-06-07 02:02:35 +10:00
parent 18b59c9e84
commit bfd506f497
4 changed files with 17 additions and 3 deletions

View File

@@ -61,8 +61,10 @@ to the same string to save memory, and you can just create a new one of these va
rather than copying entirely for a speed boost. This module has it's own memory allocator system that is
plugged into the main memory allocator.
`Toy_RefFunction` acts similarly to `Toy_RefString`, but instead operates on function bytecode.
*/
#include "toy_scope.h"
#include "toy_refstring.h"
#include "toy_reffunction.h"