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/trunk@64515 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b85b10c11f
commit
8752a1ff4e
@ -10004,7 +10004,7 @@ const rb_iseq_t *
|
|||||||
iseq_ibf_load(VALUE str)
|
iseq_ibf_load(VALUE str)
|
||||||
{
|
{
|
||||||
struct ibf_load *load;
|
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);
|
VALUE loader_obj = TypedData_Make_Struct(0, struct ibf_load, &ibf_load_type, load);
|
||||||
|
|
||||||
ibf_load_setup(load, loader_obj, str);
|
ibf_load_setup(load, loader_obj, str);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user