summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-05 11:42:34 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-05 11:42:34 +0000
commitb6b76e3a85130dc24dbacd60a82033c780581e9b (patch)
treeceb2a9ef6c63493d267159b4f4d8ab95f8b0de4a /internal.h
parent7ac8fe74074a085eb79dfbf501f186fe0af7d1b2 (diff)
* internal.h: move definition of rb_cref_t to method.h.
* eval_intern.h: move definition of rb_scope_visibility_t to method.h. * method.h: change rb_cref_t::scope_visi from VALUE to rb_scope_visibility_t. [Bug #11219] * vm.c (vm_cref_new): accept rb_method_visibility_t directly. * vm_insnhelper.c (rb_vm_rewrite_cref): don't use 0, but METHOD_VISI_UNDEF. * vm_method.c (rb_scope_visibility_set): don't need to use cast. * vm_method.c (rb_scope_module_func_set): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50782 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/internal.h b/internal.h
index 93208768d0..f30ddee905 100644
--- a/internal.h
+++ b/internal.h
@@ -545,15 +545,7 @@ imemo_type(VALUE imemo)
return (RBASIC(imemo)->flags >> FL_USHIFT) & imemo_mask;
}
-/* CREF */
-
-typedef struct rb_cref_struct {
- VALUE flags;
- const VALUE refinements;
- const VALUE klass;
- VALUE scope_visi;
- struct rb_cref_struct * const next;
-} rb_cref_t;
+/* CREF in method.h */
/* SVAR */