Specify forgotten constant modifiers for arguments
This commit is contained in:
parent
7798638dd9
commit
1f520b9c0a
1 changed files with 2 additions and 2 deletions
|
@ -75,7 +75,7 @@ VALUE cTox_initialize(const VALUE self, const VALUE options)
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
VALUE cTox_savedata(VALUE self)
|
VALUE cTox_savedata(const VALUE self)
|
||||||
{
|
{
|
||||||
cTox_ *tox;
|
cTox_ *tox;
|
||||||
|
|
||||||
|
@ -122,7 +122,7 @@ VALUE cTox_cOptions_initialize(const VALUE self)
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
VALUE cTox_cOptions_data_EQUALS(VALUE self, VALUE savedata)
|
VALUE cTox_cOptions_data_EQUALS(const VALUE self, const VALUE savedata)
|
||||||
{
|
{
|
||||||
cTox_cOptions_ *tox_options;
|
cTox_cOptions_ *tox_options;
|
||||||
|
|
||||||
|
|
Reference in a new issue