1
0
forked from Mirror/wren

set WREN_MAX_TEMP_ROOTS default to 8 instead of 5

that's 64 bytes, fits nicely in a cache line and isn't _as_ arbitrary.
This commit is contained in:
underscorediscovery
2020-07-11 11:34:35 -07:00
parent 2ce421eac5
commit da091e250c

View File

@ -8,7 +8,7 @@
// The maximum number of temporary objects that can be made visible to the GC // The maximum number of temporary objects that can be made visible to the GC
// at one time. // at one time.
#define WREN_MAX_TEMP_ROOTS 5 #define WREN_MAX_TEMP_ROOTS 8
typedef enum typedef enum
{ {