aboutsummaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
authorLourens Naudé <lourens@bearmetal.eu>2020-01-04 00:45:58 +0000
committerSamuel Williams <samuel.williams@oriontransfer.co.nz>2020-01-11 14:40:36 +1300
commit40c57ad4a13898760b81a99dac181e5bf61afe47 (patch)
tree346d0d3976425a6211bfc8e1e5ece4a0411de730 /vm_core.h
parentb53d8230f1fed0f99a8a852d853bbd9b5c353fed (diff)
downloadruby-40c57ad4a13898760b81a99dac181e5bf61afe47.tar.gz
Let execution context local storage be an ID table
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index 70575fa66b..a2f6af3c30 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -865,7 +865,7 @@ typedef struct rb_execution_context_struct {
struct rb_thread_struct *thread_ptr;
/* storage (ec (fiber) local) */
- st_table *local_storage;
+ struct rb_id_table *local_storage;
VALUE local_storage_recursive_hash;
VALUE local_storage_recursive_hash_for_trace;