Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore/src/lib/ecore


Modified Files:
        ecore_sheap.c 


Log Message:
These sohuld be global.

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_sheap.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- ecore_sheap.c       5 Sep 2005 15:01:40 -0000       1.7
+++ ecore_sheap.c       5 Sep 2005 15:10:34 -0000       1.8
@@ -1,14 +1,11 @@
 #include "ecore_private.h"
 #include "Ecore_Data.h"
 
-# define ECORE_SHEAP_MIN 0
-# define ECORE_SHEAP_MAX 1
+#define HEAP_INCREMENT 4096
 
-# define HEAP_INCREMENT 4096
-
-# define PARENT(i) (i / 2)
-# define LEFT(i) (2 * i)
-# define RIGHT(i) (2 * i + 1)
+#define PARENT(i) (i / 2)
+#define LEFT(i) (2 * i)
+#define RIGHT(i) (2 * i + 1)
 
 static void _ecore_sheap_heapify(Ecore_Sheap *heap, int i);
 static void _ecore_sheap_update_data(Ecore_Sheap *heap);




-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to