summaryrefslogtreecommitdiff
path: root/method.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-26 06:26:08 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-26 06:26:08 +0000
commit0c86e8b70b277ab5179d13839b9496dce55f51df (patch)
treef75f518c85036fcf077835d58fed6ae709378bdb /method.h
parentba7a870a8924fdd0fe1612ef4b74024ae0e3fe32 (diff)
* method.c (rb_method_entry_t): body.proc should be marked.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24664 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'method.h')
-rw-r--r--method.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/method.h b/method.h
index 6032d572d7..0185c059b5 100644
--- a/method.h
+++ b/method.h
@@ -59,7 +59,7 @@ typedef struct rb_method_entry_struct {
rb_iseq_t *iseq; /* should be mark */
rb_method_cfunc_t cfunc;
ID attr_id;
- VALUE proc;
+ VALUE proc; /* should be mark */
enum method_optimized_type {
OPTIMIZED_METHOD_TYPE_SEND,
OPTIMIZED_METHOD_TYPE_CALL