1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

vm_core.h: fix comment

* vm_core.h (rb_proc_t): fix comment.  safe_level is upto 3 now.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46887 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-07-20 12:28:48 +00:00
parent 44c32c22b8
commit 975dcbbcf9

View file

@ -738,7 +738,7 @@ typedef struct {
VALUE envval; /* for GC mark */
VALUE blockprocval;
int8_t safe_level; /* 0..4 */
int8_t safe_level; /* 0..3 */
int8_t is_from_method; /* bool */
int8_t is_lambda; /* bool */
} rb_proc_t;