From 89ffc2e60a7e7473504721874596e7bebcce896a Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 12 Aug 2022 17:55:32 -0700 Subject: Chapter 26.5 --- clox/src/table.h | 1 + 1 file changed, 1 insertion(+) (limited to 'clox/src/table.h') diff --git a/clox/src/table.h b/clox/src/table.h index b2bf7a3..8c5aa07 100644 --- a/clox/src/table.h +++ b/clox/src/table.h @@ -23,6 +23,7 @@ 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 tableRemoveWhite(Table *table); void markTable(Table *table); #endif -- cgit v1.2.3-54-g00ecf