summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-20 12:28:48 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-20 12:28:48 +0000
commit975dcbbcf9ec1c1669c328731e3c54e8480570a7 (patch)
tree7355c4846ae4f4d53b4c19261c9b7ecfaf8a7a22 /vm_core.h
parent44c32c22b89171a32766a146b30e42bd96d70ab3 (diff)
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
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index a42c8b7170..5baf60faf5 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -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;