diff options
Diffstat (limited to 'src/stdlib/tables.c')
| -rw-r--r-- | src/stdlib/tables.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/stdlib/tables.c b/src/stdlib/tables.c index 780aca83..c01ac25e 100644 --- a/src/stdlib/tables.c +++ b/src/stdlib/tables.c @@ -752,8 +752,9 @@ CONSTFUNC public void *Table$str_entry(Table_t t, int64_t n) return Table$entry(t, n); } -PUREFUNC public bool Table$is_none(const void *obj, const TypeInfo_t*) +PUREFUNC public bool Table$is_none(const void *obj, const TypeInfo_t *info) { + (void)info; return ((Table_t*)obj)->entries.length < 0; } |
