Eo: change refcount to short from int.

A short is more than enough for reference counting.
This commit is contained in:
Tom Hacohen 2016-05-17 09:39:12 +01:00
parent 328607f3b9
commit 2373fd5fd2
1 changed files with 2 additions and 2 deletions

View File

@ -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;