Updated comment

This commit is contained in:
Justin Ethier 2019-10-10 13:54:27 -04:00
parent 4cb5b1db40
commit 8cf0745c62

View file

@ -429,9 +429,8 @@ list global_table = NULL;
void add_global(object * glo)
{
// It would probably be more efficient to allocate
// a contiguous block of memory for this... for now
// this is more expedient
// Tried using a vpbuffer for this and the benchmark
// results were the same or worse.
global_table = malloc_make_pair(mcvar(glo), global_table);
}