summaryrefslogtreecommitdiff
path: root/src/libtess/priorityq-heap.c
diff options
context:
space:
mode:
authorNeil Roberts <neil@linux.intel.com>2010-06-30 12:41:11 +0100
committerBrian Paul <brianp@vmware.com>2010-06-30 07:59:39 -0600
commita6392e991580c081b26b28be5c20795d6090283f (patch)
tree7df82975554e8b7ac71ef2de7cf7d48ef7488f11 /src/libtess/priorityq-heap.c
parentc73b73ee3328da74bbe74c7ea65e52b9d4e469a3 (diff)
downloadglu-a6392e991580c081b26b28be5c20795d6090283f.tar.gz
glu: Fix some compiler warnings in libtess
When compiled with the more aggressive compiler warnings such as -Wshadow and -Wempty-body the libtess code gives a lot more warnings. This fixes the following issues: * The 'Swap' macro tries to combine multiple statements into one and then consume the trailing semicolon by using if(1){/*...*/}else. This gives warnings because the else part ends up with an empty statement. It also seems a bit dangerous because if the semicolon were missed then it would still be valid syntax but it would just ignore the following statement. This patch replaces it with the more common idiom do { /*...*/ } while(0). * 'free' was being used as a local variable name but this shadows the global function. This has been renamed to 'free_handle' * TRUE and FALSE were being unconditionally defined. Although this isn't currently a problem it seems better to guard them with #ifndef because it's quite common for them to be defined in other headers. https://bugs.freedesktop.org/show_bug.cgi?id=28845 Signed-off-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/libtess/priorityq-heap.c')
-rw-r--r--src/libtess/priorityq-heap.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/src/libtess/priorityq-heap.c b/src/libtess/priorityq-heap.c
index e3a6c60..52698b5 100644
--- a/src/libtess/priorityq-heap.c
+++ b/src/libtess/priorityq-heap.c
@@ -39,8 +39,12 @@
#define INIT_SIZE 32
+#ifndef TRUE
#define TRUE 1
+#endif
+#ifndef FALSE
#define FALSE 0
+#endif
#ifdef FOR_TRITE_TEST_PROGRAM
#define LEQ(x,y) (*pq->leq)(x,y)
@@ -159,7 +163,7 @@ void pqInit( PriorityQ *pq )
PQhandle pqInsert( PriorityQ *pq, PQkey keyNew )
{
long curr;
- PQhandle free;
+ PQhandle free_handle;
curr = ++ pq->size;
if( (curr*2) > pq->max ) {
@@ -186,21 +190,21 @@ PQhandle pqInsert( PriorityQ *pq, PQkey keyNew )
}
if( pq->freeList == 0 ) {
- free = curr;
+ free_handle = curr;
} else {
- free = pq->freeList;
- pq->freeList = pq->handles[free].node;
+ free_handle = pq->freeList;
+ pq->freeList = pq->handles[free_handle].node;
}
- pq->nodes[curr].handle = free;
- pq->handles[free].node = curr;
- pq->handles[free].key = keyNew;
+ pq->nodes[curr].handle = free_handle;
+ pq->handles[free_handle].node = curr;
+ pq->handles[free_handle].key = keyNew;
if( pq->initialized ) {
FloatUp( pq, curr );
}
- assert(free != LONG_MAX);
- return free;
+ assert(free_handle != LONG_MAX);
+ return free_handle;
}
/* really __gl_pqHeapExtractMin */