eo-cxx: Fix warning on weak symbols with inline functions

Removed the EOAPI which is not necessary as the function is already inlined
This commit is contained in:
Felipe Magno de Almeida 2016-04-05 15:38:49 -03:00
parent f534fb8943
commit 8c70b9cfd1
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ Eo_Class const* create_class(eina::index_sequence<S...>);
/// @param this_ The <em>user data</em> to be passed to the resolved function.
/// @param args An heterogeneous sequence of arguments.
///
inline EOAPI EO_VOID_FUNC_BODYV(inherit_constructor, EO_FUNC_CALL(this_), void* this_);
inline EO_VOID_FUNC_BODYV(inherit_constructor, EO_FUNC_CALL(this_), void* this_);
}