From 2c62beb6b61e5c66ac165e6d759750e9340f5f62 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 31 Oct 2018 02:39:08 +0000 Subject: remove '//' style comments. * variable.c (obj_ivar_set): remove '//' style comments pointed out by the following build log: https://travis-ci.org/ruby/ruby/jobs/448551951 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65466 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- variable.c | 1 - 1 file changed, 1 deletion(-) (limited to 'variable.c') diff --git a/variable.c b/variable.c index 1781c82ce4..d53e788b0a 100644 --- a/variable.c +++ b/variable.c @@ -1422,7 +1422,6 @@ obj_ivar_set(VALUE obj, ID id, VALUE val) if (RBASIC(obj)->flags & ROBJECT_EMBED) { newptr = obj_ivar_heap_alloc(obj, newsize); - // newptr = ALLOC_N(VALUE, newsize); MEMCPY(newptr, ptr, VALUE, len); RBASIC(obj)->flags &= ~ROBJECT_EMBED; ROBJECT(obj)->as.heap.ivptr = newptr; -- cgit v1.2.3