Skip to content

Commit

Permalink
merge revision(s) 64515:
Browse files Browse the repository at this point in the history
	remove `const` warning.

	* compile.c (iseq_ibf_load): remove `const` to pass iseq as no `const`
	  parameter.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_5@65274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nagachika committed Oct 21, 2018
1 parent e2acebe commit cd8b903
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compile.c
Expand Up @@ -9507,7 +9507,7 @@ const rb_iseq_t *
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);
Expand Down
2 changes: 1 addition & 1 deletion version.h
@@ -1,6 +1,6 @@
#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
Expand Down

0 comments on commit cd8b903

Please sign in to comment.