diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-09-04 06:53:49 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-09-04 06:53:49 -0700 |
commit | 51e5d6643fa63478a4ddc1a0ec5570879675ae11 (patch) | |
tree | e30ac0d110ebd0f909e5883a514d5972e7f375a5 /lib.h | |
parent | 2428eb747884ff3e99ff2a4692d0424092b60b78 (diff) | |
download | txr-51e5d6643fa63478a4ddc1a0ec5570879675ae11.tar.gz txr-51e5d6643fa63478a4ddc1a0ec5570879675ae11.tar.bz2 txr-51e5d6643fa63478a4ddc1a0ec5570879675ae11.zip |
structs: move SLOT_CACHE_SIZE macro.
Only struct.c refers to this symbol, and so only struct.c
needs to be recompiled when someone experiments with different
values.
* lib.h (SLOT_CACHE_SIZE): Macro deleted here.
* struct.c (SLOT_CACHE_SIZE): Macro moved here.
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -124,8 +124,6 @@ struct string { val alloc; }; -#define SLOT_CACHE_SIZE 8 - typedef struct { cnum id; cnum slot; |