diff options
author | Peter Zhu <[email protected]> | 2024-03-12 13:56:28 -0400 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2024-03-13 14:50:44 -0400 |
commit | 42bfbe9aa6fe1463921c6d86fd61e5c89e962ac2 (patch) | |
tree | 554746c46a35ef430a1b20130c6381ddbc060aaf /shape.c | |
parent | 76f9cfd0b912785b65ccd1b9bf1abefc388aaaca (diff) |
Remove unused size_pool_edge_names
Diffstat (limited to 'shape.c')
-rw-r--r-- | shape.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -43,7 +43,6 @@ static ID id_frozen; static ID id_t_object; -static ID size_pool_edge_names[SIZE_POOL_COUNT]; #define LEAF 0 #define BLACK 0x0 @@ -1243,11 +1242,6 @@ Init_default_shapes(void) } #endif - // Shapes by size pool - for (int i = 0; i < SIZE_POOL_COUNT; i++) { - size_pool_edge_names[i] = rb_make_internal_id(); - } - // Root shape rb_shape_t *root = rb_shape_alloc_with_parent_id(0, INVALID_SHAPE_ID); root->capacity = 0; |