summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/vm_core.h b/vm_core.h
index 50fd3ee3d2..0684e85456 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -171,6 +171,10 @@ enum ruby_vm_throw_flags {
VM_THROW_STATE_MASK = 0xff
};
+/* forward declarations */
+struct rb_thread_struct;
+struct rb_control_frame_struct;
+
/* iseq data type */
typedef struct rb_compile_option_struct rb_compile_option_t;
@@ -191,10 +195,6 @@ union iseq_inline_storage_entry {
struct iseq_inline_cache_entry cache;
};
-/* to avoid warning */
-struct rb_thread_struct;
-struct rb_control_frame_struct;
-
enum method_missing_reason {
MISSING_NOENTRY = 0x00,
MISSING_PRIVATE = 0x01,
@@ -624,13 +624,11 @@ struct rb_unblock_callback {
struct rb_mutex_struct;
-struct rb_thread_struct;
typedef struct rb_thread_list_struct{
struct rb_thread_list_struct *next;
struct rb_thread_struct *th;
} rb_thread_list_t;
-
typedef struct rb_ensure_entry {
VALUE marker;
VALUE (*e_proc)(ANYARGS);