From 14ff2519ec02b4e387f86d6da354164874ff0303 Mon Sep 17 00:00:00 2001 From: Logan Drescher <106617880+CodeByDrescher@users.noreply.github.com> Date: Tue, 23 Jan 2024 13:33:48 -0500 Subject: [PATCH] investigating fix for compiler complaint --- qhull/mem.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qhull/mem.h b/qhull/mem.h index e1fe42971..b79d179b7 100644 --- a/qhull/mem.h +++ b/qhull/mem.h @@ -62,7 +62,8 @@ using std::ostream; On 64-bit machines, a pointer may be larger than an 'int'. qh_meminit() checks that 'long' holds a 'void*' */ -typedef unsigned long ptr_intT; +//typedef unsigned long ptr_intT; +typedef unsigned long long ptr_intT; /*----------------------------------