mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* variable.c (rb_const_set): fix missing semicolon.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41150 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
083e7e397c
commit
fb4c8c3a2a
1 changed files with 1 additions and 1 deletions
|
@ -2140,7 +2140,7 @@ void
|
|||
rb_const_set(VALUE klass, ID id, VALUE val)
|
||||
{
|
||||
rb_const_entry_t *ce;
|
||||
rb_const_flag_t visibility = CONST_PUBLIC
|
||||
rb_const_flag_t visibility = CONST_PUBLIC;
|
||||
|
||||
if (NIL_P(klass)) {
|
||||
rb_raise(rb_eTypeError, "no class/module to define constant %"PRIsVALUE"",
|
||||
|
|
Loading…
Reference in a new issue