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

* insns.def (setclassvariable): remove warn argument.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11612 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2007-02-02 09:45:19 +00:00
parent fe8d1cfdfd
commit e137ee9ac4
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Fri Feb 2 18:44:31 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* insns.def (setclassvariable): remove warn argument.
Fri Feb 2 18:36:40 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* common.mk (compile.$(OBJEXT)): add config.h to vm.c and

View file

@ -231,7 +231,7 @@ setclassvariable
if (declp == Qtrue && RTEST(ruby_verbose) && FL_TEST(klass, FL_SINGLETON)) {
rb_warn("declaring singleton class variable");
}
rb_cvar_set(klass, id, val, declp);
rb_cvar_set(klass, id, val);
}
/**