ruby-changes:53060
From: nagachika <ko1@a...>
Date: Sun, 21 Oct 2018 20:20:05 +0900 (JST)
Subject: [ruby-changes:53060] nagachika:r65274 (ruby_2_5): merge revision(s) 64515:
nagachika 2018-10-21 20:19:59 +0900 (Sun, 21 Oct 2018) New Revision: 65274 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=65274 Log: merge revision(s) 64515: remove `const` warning. * compile.c (iseq_ibf_load): remove `const` to pass iseq as no `const` parameter. Modified directories: branches/ruby_2_5/ Modified files: branches/ruby_2_5/compile.c branches/ruby_2_5/version.h Index: ruby_2_5/version.h =================================================================== --- ruby_2_5/version.h (revision 65273) +++ ruby_2_5/version.h (revision 65274) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_5/version.h#L1 #define RUBY_VERSION "2.5.4" #define RUBY_RELEASE_DATE "2018-10-21" -#define RUBY_PATCHLEVEL 106 +#define RUBY_PATCHLEVEL 107 #define RUBY_RELEASE_YEAR 2018 #define RUBY_RELEASE_MONTH 10 Index: ruby_2_5/compile.c =================================================================== --- ruby_2_5/compile.c (revision 65273) +++ ruby_2_5/compile.c (revision 65274) @@ -9507,7 +9507,7 @@ const rb_iseq_t * https://github.com/ruby/ruby/blob/trunk/ruby_2_5/compile.c#L9507 iseq_ibf_load(VALUE str) { struct ibf_load *load; - const rb_iseq_t *iseq; + rb_iseq_t *iseq; VALUE loader_obj = TypedData_Make_Struct(0, struct ibf_load, &ibf_load_type, load); ibf_load_setup(load, loader_obj, str); Index: ruby_2_5 =================================================================== --- ruby_2_5 (revision 65273) +++ ruby_2_5 (revision 65274) Property changes on: ruby_2_5 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /trunk:r64515 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/