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:
parent
bcd35a6c79
commit
8610ea732a
3
object.c
3
object.c
@ -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];
|
||||
|
Loading…
x
Reference in New Issue
Block a user