summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authorPeter Zhu <[email protected]>2023-12-15 14:49:45 -0500
committerPeter Zhu <[email protected]>2023-12-25 10:41:12 -0500
commit824ff48adcd47497b8e2993be5144de0e09a4f66 (patch)
tree7e3b645b1845167ac69d4a851d36964a5f297525 /object.c
parentf4d2fe5e0d22876a6df68b9b56fb00b25d7aa5d8 (diff)
Move internal ST functions to internal/st.h
st_replace and st_init_existing_table_with_size are functions used internally in Ruby and should not be publicly visible.
Diffstat (limited to 'object.c')
-rw-r--r--object.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/object.c b/object.c
index cde1d7b1d6..9a5a8fbe8a 100644
--- a/object.c
+++ b/object.c
@@ -31,6 +31,7 @@
#include "internal/object.h"
#include "internal/struct.h"
#include "internal/string.h"
+#include "internal/st.h"
#include "internal/symbol.h"
#include "internal/variable.h"
#include "variable.h"