From 8c70b9cfd176672388e27a2924b9d7117f853092 Mon Sep 17 00:00:00 2001 From: Felipe Magno de Almeida Date: Tue, 5 Apr 2016 15:38:49 -0300 Subject: [PATCH] eo-cxx: Fix warning on weak symbols with inline functions Removed the EOAPI which is not necessary as the function is already inlined --- src/bindings/eo_cxx/eo_inherit.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/eo_cxx/eo_inherit.hh b/src/bindings/eo_cxx/eo_inherit.hh index 4944dc4bab..a05d11fe94 100644 --- a/src/bindings/eo_cxx/eo_inherit.hh +++ b/src/bindings/eo_cxx/eo_inherit.hh @@ -30,7 +30,7 @@ Eo_Class const* create_class(eina::index_sequence); /// @param this_ The user data 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_); }