From ab190136310e7fbaf85095920bb50a7f7419e321 Mon Sep 17 00:00:00 2001
From: Brad Barber <bradb@shore.net>
Date: Mon, 4 Jan 2010 20:56:21 -0500
Subject: [PATCH] ptr_intT is typically signed

---
 src/mem.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mem.h b/src/mem.h
index 0d2f8f3..b938c43 100644
--- a/src/mem.h
+++ b/src/mem.h
@@ -74,7 +74,7 @@ Trace short and quick memory allocations at T5
     On 64-bit machines, a pointer may be larger than an 'int'.  
     qh_meminit()/mem.c checks that 'ptr_intT' holds a 'void*'
     ptr_intT is not defined as 'long long' for portability to older compilers
-    ptr_intT is signed
+    ptr_intT is typically a signed value, but not necessarily so 
     size_t is typically unsigned, but should match the parameter type
     Qhull uses int instead of size_t except for system calls such as malloc, qsort, qh_malloc, etc.
 */
-- 
GitLab