From: Tom Hacohen Date: Tue, 17 May 2016 08:39:12 +0000 (+0100) Subject: Eo: change refcount to short from int. X-Git-Tag: upstream/1.20.0~6299 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2373fd5fd2b7338749269a2665dd1089b91a7f37;p=platform%2Fupstream%2Fefl.git Eo: change refcount to short from int. A short is more than enough for reference counting. --- 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;