eolian: check does no changes, so take a const state

This commit is contained in:
Daniel Kolesa 2018-05-13 15:57:51 +02:00
parent 4d61374872
commit e50aa5e1c9
2 changed files with 2 additions and 2 deletions

View File

@ -845,7 +845,7 @@ EAPI Eina_Bool eolian_state_all_eot_files_parse(Eolian_State *state);
*
* @ingroup Eolian
*/
EAPI Eina_Bool eolian_state_check(Eolian_State *state);
EAPI Eina_Bool eolian_state_check(const Eolian_State *state);
/*
* @brief Get an Eolian unit by file name.

View File

@ -1107,7 +1107,7 @@ eolian_state_all_eo_files_parse(Eolian_State *state)
}
EAPI Eina_Bool
eolian_state_check(Eolian_State *state)
eolian_state_check(const Eolian_State *state)
{
return database_check(state);
}