tasn pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=2373fd5fd2b7338749269a2665dd1089b91a7f37
commit 2373fd5fd2b7338749269a2665dd1089b91a7f37 Author: Tom Hacohen <t...@stosb.com> Date: Tue May 17 09:39:12 2016 +0100 Eo: change refcount to short from int. A short is more than enough for reference counting. --- src/lib/eo/eo_private.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eo/eo_private.h b/src/lib/eo/eo_private.h index 4f60740..10606f8 100644 --- a/src/lib/eo/eo_private.h +++ b/src/lib/eo/eo_private.h @@ -97,8 +97,8 @@ struct _Eo_Object Eina_List *composite_objects; Eo_Del_Intercept del_intercept; - int refcount; - int datarefcount; + short refcount; + short datarefcount; Eina_Bool condtor_done:1; Eina_Bool finalized:1; --