aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/table.h
diff options
context:
space:
mode:
Diffstat (limited to 'clox/src/table.h')
-rw-r--r--clox/src/table.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/clox/src/table.h b/clox/src/table.h
index b4c3271..b2bf7a3 100644
--- a/clox/src/table.h
+++ b/clox/src/table.h
@@ -23,5 +23,6 @@ bool tableDelete(Table *table, ObjString *key);
void tableAddAll(Table *from, Table *to);
ObjString *tableFindString(Table *talbe, const char *chars, int length,
uint32_t hash);
+void markTable(Table *table);
#endif