summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorKOBAYASHI Shuji <[email protected]>2021-04-20 16:53:11 +0900
committerKOBAYASHI Shuji <[email protected]>2021-04-20 16:53:11 +0900
commit903fbd767a7f917369d11911d905cb90e4f577ad (patch)
treead904912c32727f6045f8d127899ef740eff78d4 /include
parentff366b65ebc866a6287002ece5121f6f25321e26 (diff)
downloadmruby-903fbd767a7f917369d11911d905cb90e4f577ad.tar.gz
mruby-903fbd767a7f917369d11911d905cb90e4f577ad.zip
Remove unused struct in `include/mruby/variable.h`
Diffstat (limited to 'include')
-rw-r--r--include/mruby/variable.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/mruby/variable.h b/include/mruby/variable.h
index 01a44fff9..3dc2c9a6d 100644
--- a/include/mruby/variable.h
+++ b/include/mruby/variable.h
@@ -14,21 +14,6 @@
*/
MRB_BEGIN_DECL
-typedef struct global_variable {
- int counter;
- mrb_value *data;
- mrb_value (*getter)(void);
- void (*setter)(void);
- /* void (*marker)(); */
- /* int block_trace; */
- /* struct trace_var *trace; */
-} global_variable;
-
-struct global_entry {
- global_variable *var;
- mrb_sym id;
-};
-
mrb_value mrb_vm_special_get(mrb_state*, mrb_sym);
void mrb_vm_special_set(mrb_state*, mrb_sym, mrb_value);
mrb_value mrb_vm_cv_get(mrb_state*, mrb_sym);