aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-28 14:31:13 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-28 14:31:13 -0400
commit36832052a0e252e3fd8537e6a4fda8a31d653521 (patch)
tree20edec1f62892daab841e54395be8276151caf6e /src
parent5ac4ecea38737974f8f0927f01e8a6a5febf863b (diff)
Remove dead code
Diffstat (limited to 'src')
-rw-r--r--src/stdlib/tables.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/stdlib/tables.c b/src/stdlib/tables.c
index 97419327..da754847 100644
--- a/src/stdlib/tables.c
+++ b/src/stdlib/tables.c
@@ -73,11 +73,6 @@ PUREFUNC static INLINE size_t entry_size(const TypeInfo_t *info)
return size;
}
-PUREFUNC static INLINE size_t entry_align(const TypeInfo_t *info)
-{
- return (size_t)MAX(info->TableInfo.key->align, info->TableInfo.value->align);
-}
-
PUREFUNC static INLINE size_t value_offset(const TypeInfo_t *info)
{
size_t offset = (size_t)info->TableInfo.key->size;