From 2373fd5fd2b7338749269a2665dd1089b91a7f37 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 17 May 2016 09:39:12 +0100 Subject: [PATCH] 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; -- 2.7.4