object.c: suppress warning

* object.c (rb_obj_clone2): remove set but not used variable to
  suppress unused-but-set-variable warning.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55807 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-08-03 06:03:50 +00:00
parent bcd35a6c79
commit 8610ea732a

View File

@ -331,12 +331,11 @@ rb_obj_clone2(int argc, VALUE *argv, VALUE obj)
VALUE clone;
VALUE singleton;
VALUE kwfreeze = Qtrue;
int n;
if (!keyword_ids[0]) {
CONST_ID(keyword_ids[0], "freeze");
}
n = rb_scan_args(argc, argv, "0:", &opt);
rb_scan_args(argc, argv, "0:", &opt);
if (!NIL_P(opt)) {
rb_get_kwargs(opt, keyword_ids, 0, 1, kwargs);
kwfreeze = kwargs[0];