Use global arena for AstNode allocations

This commit is contained in:
gingerBill
2018-06-09 19:53:06 +01:00
parent 49ea9ed722
commit 268491b224
11 changed files with 129 additions and 120 deletions

View File

@@ -96,7 +96,7 @@ String substring(String const &s, isize lo, isize hi) {
char *alloc_cstring(gbAllocator a, String s) {
char *c_str = gb_alloc_array(a, char, s.len+1);
gb_memcopy(c_str, s.text, s.len);
gb_memmove(c_str, s.text, s.len);
c_str[s.len] = '\0';
return c_str;
}